I am trying to click on a button with its cssSelector in Selenium 2.0 WebDriver. The issue is the script which I am able to run with Selenium RC is not working with WebDriver. Code:
Selenium RC :
`selenium.click("css=.gwt-Button:contains('Run Query')");`
which works ablosutely fine. Selenium WebDriver:
driver.findElement(By.cssSelector(".gwt-Button:contains('Run Query')")).click();
which does not work. I am using : selenium-server-standalone-2.9.0.jar with firefox 5.0 versions. Could anyone help me in figuring out why the cssSelector is not working with WebDriver ? Thanks in Advance.