How does selenium commands browser ? I know that selenium proxy's requests to urls and on reponse injects selenium core js api into the response. but how does "click" or any other command reach the browser ? In other words how does selenium invoke the selenium core api injected in the browser page ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Selenium recommends the use of WebDriver to replace the remote control functionality. TMK, the older code injected Javascript into the browser and communicated via that. The WebDriver code uses the native API for each browser.
|
|||
|
|
|
Selenium RC runs a request-loop in the browser (in the Selenium window or frame), and the RC server acts as a forwarding agent between the client and the browser. Here's the sequence:
|
|||
|
|