5

I am trying to execute tests using JENKINS. Chrome Browser is getting opened but nothing is happening on the browser. am observing the below error's on JENKIN's console

Can someone please help me with this:

[101208:121084:0919/123709.490:ERROR:install_util.cc(603)] Failed to read HKLM\SOFTWARE\Policies\Google\Chrome\MachineLevelUserCloudPolicyEnrollmentToken: The system cannot find the file specified. (0x2)
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: AlwaysAuthorizePlugins
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: DisablePluginFinder
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: DnsPrefetchingEnabled
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: MachineLevelUserCloudPolicyEnrollmentToken
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: RemoteAccessHostRequireTwoFactor
[101208:121084:0919/123709.490:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: SiginAllowed
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: AlwaysAuthorizePlugins
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: DisablePluginFinder
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: DnsPrefetchingEnabled
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: MachineLevelUserCloudPolicyEnrollmentToken
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: RemoteAccessHostRequireTwoFactor
[101208:121084:0919/123709.522:ERROR:configuration_policy_handler_list.cc(91)] Unknown policy: SiginAllowed

DevTools listening on ws://127.0.0.1:12389/devtools/browser/4c685c14-13f6-47d2-9930-bd3d69f6cf8b
Sep 19, 2018 12:37:46 PM hudson.model.Run execute
INFO: AutoTest_Workspace #49 main build action completed: FAILURE

I already tried the below solution:

enter image description here

But did not find any Luck.

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Atul
  • 53
  • 1
  • 5
  • 1
    It works fine when I added the string `MachineLevelUserCloudPolicyEnrollmentToken` using `regedit` in this path Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome – Dipankar Nalui Nov 14 '18 at 12:59

1 Answers1

3

Some more information about the usecase in terms of:

  • Selenium Client version
  • ChromeDriver version
  • Chrome Browser version

Would have helped us to construct a canonical answer. However,


Solution

As you have already tried the solution from [14596:10928:0531/174034.867:ERROR:install_util.cc(589)] Unable to create registry key HKLM\SOFTWARE\Policies\Google\Chrome for reading result=2 [14452:3972:0531/170507.354:ERROR:install_util.cc(597)] Unable to read registry value HKLM\SOFTWARE\Policies\Google\Chrome\MachineLevelUserCloudPolicyEnrollmentToken for writing result=2 which didn't work and is as follows:

Registry_Key

  • Ensure Chromium/Google Chrome is installed in a recognized location.
    • ChromeDriver expects you to have Chrome installed in the default location for your platform.

ChromeLocation

  • You can also force ChromeDriver to use a custom location by setting a special capability.

ChromeDifferentLocation


Additional Consideration

Additionally you need to ensure the following:

  • Upgrade JDK to recent levels JDK 8u181.
  • Upgrade Selenium to current levels Version 3.14.0.
  • Upgrade ChromeDriver to current ChromeDriver v2.42 level.
  • Keep Chrome version between Chrome v68-70 levels. (as per ChromeDriver v2.42 release notes)
  • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.
  • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
  • 1
    Hi @DebanjanB I tried writing a new string on the Registry under SOFTWARE/Policies/Chrome but I was not able to... it said "Error Writing to reistry" – Malcolm Salvador Nov 23 '18 at 14:00
  • @Malky.Kid Ensure that you have the required rights to change the registry and further try cleaning up your system through [CCleaner](https://www.ccleaner.com/ccleaner) – undetected Selenium Nov 23 '18 at 14:09