Can anyboby please suggest the best version of google chrome for Selenium Webdriver java.Im using webdriver 44 on windows 7. My code runs correctly in firefox but fails to run in google chrome.
You can download the latest chrome drive here:
https://sites.google.com/a/chromium.org/chromedriver/downloads
This should work with WebDriver as it is working for me.
Related
Previously I am working on chrome 76 version then my headless option in selenium testing is running fine when the chrome is updated with version 77, this is not working I use this for writing basic automation tests in selenium even if I mention chrome options to --headless that doesn't work for me. It directly opens the browser but if we use --headless the browser need not to open but in my case, it was opening. Please suggest me a way to get this issue resolved
Yes, right now the chrome is updated again and for the latest update to 78 version, this --headless mode is working fine. Now if I use 77 chrome driver its working for me.
I'm working on functional testing. I'm using selenium, protractor and cucumber with Typescript. I'm generally testing on Chrome.
Recently, I've got a problem with my Chrome webdriver (See the image below).
Rendering problem on Chromedriver
As you can see, it seems to be a rendering problem. The problem occurs only when I'm running chrome with selenium webdriver and it triggers with all of my applications.
Environment :
MacOS High Sierra
Protractor 5.3.2
Webdriver-manager 12.0.6
ChromeDriver 2.40
Moreover, my colleague who has the same environment and the same projects work perfectly on his machine.
I tried some tricks :
uninstall and install Google Chrome
downgrade chrome version
downgrade chrome driver version
Restart my machine and my environment
Clean the Chrome webdriver cache
Delete and redownload Node modules
Pull an ancient version of each project
Downgrading and upgrading Protractor
The rendering is working perfectly on Firefox, so the problem is on Chrome only.
By the way, all the page components are in the DOM, it is just about a display problem.
Is anyone got any idea ?
selenium standalone server version 2.47.1
Google Chrome driver version - 2.21
Unable to invoke Chrome browser of version greater than 34 with Selenium Web driver.
Can anyone help me how to resolve this.
Downloaded and replaced latest chromedriver.exe and the issue got solved.
Thanks Krishnan Mahadevan.
I am trying to run tests in Chrome browser 32.0.1700.76 (latest) using Selenium 2 Webdriver with chromedriver version 2.4
Chrome starts but the string "data;" is displayed in the url bar.
Those test worked fine with a previous Chrome version (28.xxxxx) but I can't downgrade Chrome.
Can anyone suggest me how can I solve the problem?
You need to either upgrade the ChromeDriver you are using or find a way to downgrade Chrome.
The basic principle of the issue is that the ChromeDriver v2.4's support of the most recent versions of Chrome is non-existent.
You get similar issues with Firefox, an upgrade will sometimes break the tests.
I am using selenium webdriver 2.25.This webdriver supports only for firefox but not Chrome.I downloaded chromedriver and added it to the ClassPath as well but my scripts are not running if i mention chrome as the browser to run.Can anyone suggest me what configuration settings am i missing ? or where i went wrong. Am using Eclipse IDE to write scripts.