You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
What steps will reproduce the problem?
1.Have nuget reference to WebDriver 2.35 and WebDriver.Support 2.35
2.Simple test that hits http://www.google.ca/
3.Try to click on the Signin button on the Google home page
What is the expected output? What do you see instead?
Expected to see the "sign in" button clicked and the Google login screen show up
Actual:
Button not clicked.
Selenium version:2.35
OS:Windows 7
Browser:Firefox
Browser version:23
There is the sample I made,
[Test]
public void Selenium235Test()
{
IWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl("http://www.google.ca/");
var signin = driver.FindElement(By.ClassName("gbit"));
signin.Click();
}