I have one web page, all the elements on that page are generated by java script code. I want to click on one of the button on that page, I was able to do this using the chrome driver,FF Driver but failed to achieve the same with Remote Web Driver class. If anybody worked around it, please let me know.
1 Answer 1
Are you creating object for the RemoteWebdriver
class and setting the capablities for the firefox browser and chrome browser, on which you want to run the tests?
Ex:
RemoteWebDriver driver=new RemoteWebDriver();
capability = DesiredCapabilities.firefox();
Pass the capability object to the driver.
-
Hello SaiKrishna, Thanks for your answer . I am getting the following exception org.openqa.selenium.WebDriverException: Error forwarding the new session cannot find : Capabilities [{platform=ANY, javascriptEnabled=true, browserName=chrome, version=8}] Build info: version: '2.45.0', revision: '32a636c', time: '2015年03月05日 22:01:35'QAMember– QAMember2015年07月02日 05:29:19 +00:00Commented Jul 2, 2015 at 5:29
-
Are you sure that chrome version is 8?demouser123– demouser1232015年07月31日 12:48:25 +00:00Commented Jul 31, 2015 at 12:48
Explore related questions
See similar questions with these tags.