I am using Selenium and Chrome to write a test, yesterday when my Chrome updated from 43 to 44 my test got some problems with action.sendkey("arrow.down") and etc.
I tried to uninstall Chrome and install Chrome 43 but as soon as I do it updates its self to 44 !!! I also tried chromedriver 2.16 but it did not work too.
How can I fix it?
This is related to Keys.ENTER, Keys.TAB, Keys.SPACE are not working on Chrome 44 and Input.dispatchKeyEvents handles some keys incorrectly.
The problem was fixed. You need to give it some time and upgrade as soon as a new chromium release come out, or revert back to 43. Or, install
chromium
from trunk.Update Regarding AutoUpdate
You can refer How can I disable Google Chrome auto update for that
I have seen the below issues on chrome 44:
element.click
does not work always, I have to wait for a couple of secs before I click. I used css selector. This worked fine on Chrome 43.driver.findElement
keeps throwingNoSuchElementException
although element is on the page.StaleElementException
.I am blocked majorly on Chrome. I have filed Chromium bug #515171 but I am not sure if they will look at it.
This issue will be solved soon when they release the new version, but now just uninstall Chrome 44 then install chrome 43 and disable its automatic uploading.