Browser and Selenium Webdriver Version Conflict¶
The following error message occurs if the current installed browser's version does not work with its associated Selenium webdriver. This behavior can be solved by obtaining the current browser's version number and installing the associated Selenium webdriver.
Note: The Selenium webdriver's location is defined in the intaQt's configuration file.
Error Message Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 10:59:42.854 [ERROR]: Error creating ChromeDriver: unknown error: unrecognized Blink revision: 57c9d07b416b5a2ea23d28247300e4af36329bdc (Driver info: chromedriver=2.10.267518,platform=Linux 4.10.0-37-generic x86_64) (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 1.47 seconds Build info: version: '3.5.3', revision: 'a88d25fe6b', time: '2017-08-29T12:42:44.417Z' System info: host: 'qvie-lukas', ip: '127.0.1.1', os.name: 'Linux', os.arch: 'amd64', os.version: '4.10.0-37-generic', java.version: '1.8.0_131' Driver info: driver.version: ChromeDriver org.openqa.selenium.WebDriverException: unknown error: unrecognized Blink revision: 57c9d07b416b5a2ea23d28247300e4af36329bdc (Driver info: chromedriver=2.10.267518,platform=Linux 4.10.0-37-generic x86_64) (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 1.47 seconds Build info: version: '3.5.3', revision: 'a88d25fe6b', time: '2017-08-29T12:42:44.417Z' System info: host: 'qvie-lukas', ip: '127.0.1.1', os.name: 'Linux', os.arch: 'amd64', os.version: '4.10.0-37-generic', java.version: '1.8.0_131' Driver info: driver.version: ChromeDriver at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) |