Skip to content
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.

Firefox 23+ Click() does not work if display settings is different from 100% #6112

@lukeis

Description

@lukeis

Originally reported on Google Code with ID 6112

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();
        }

Reported by gavinwu.iQ on 2013-08-15 19:57:26

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions