Selenium typekeys issue
I am using typekeys to type something and to enable a button in my applic开发者_Go百科ation. But whenever the typekeys command is executed in firefox help of the firefox gets opened.
Please, can anybody tell me how to solve this problem?
Unfortunately the Selenium TypeKeys and Type commands work at the browser level so if you are override somethings it won't work in Selenium.
This bug is still open on the Selenium.
You can try the WebDriver API available in Selenium 2.0 (alpha 1) and the sendKeys
command. Available here: http://code.google.com/p/selenium/downloads/list
精彩评论