vote up 1 vote down star
1

How does selenium work? Can you explain the internal working of it.

flag

28% accept rate
Can you clarify your question? What exactly are you looking for? How is it put together architecturally? How does it manage to execute generic tasks on any web page? – Alex Sep 22 '08 at 4:05

2 Answers

vote up 3 vote down

First there's a layer of javascript code that is used to automate the browser and simulate events, run and verify tests. Next, you run a proxy server - which you point your browser to - that injects this javascript code. Then, you can talk to this proxy server through another port using a set of commands which causes the proxy server to inject javascript code to be run on(or remote controlling) the running browser. Using this framework you can write automated test scripts in a style very much like writing macros for the browser.

link|flag
vote up 2 vote down

How Selenium Works

Even has some pretty images. :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.