Behat selenium Chromedriver CreatePlatformSocket Error

I am trying to run a test with selenium and a chrome rib. I have chrome centos 6.7 installed and use the chrome lib from chromedriver (found the script here https://chrome.richardlloyd.org.uk/ )

    front:
  extensions:
    Behat\MinkExtension:
      base_url: 'http://urlfront/'
      browser_name: chrome
      sessions:
        default:
          selenium2:
            wd_host: 'http://127.0.0.1:4444/wd/hub'
            capabilities:
                browser: chrome
  suites:
   front:
    filters:
      tags: front
admin:
  extensions:
    Behat\MinkExtension:
      base_url: 'http://url/'
      browser_name: chrome
      sessions:
        default:
          selenium2:
            wd_host: 'http://localhost:4444/wd/hub'
            capabilities:
                browser: chrome
  suites:
   admin:
    filters:
      tags: admin

this is my behavior .yml im start selenium with this command:

java -jar selenium-server-standalone.jar -trustAllSSLCertificates -Djava.net.preferIPv4Stack=true -Dwebdriver.chrome.driver=chromedriver -Dwebdriver.chrome.bin=/opt/google/chrome/google-chrome

when i run the application i got selenium error message

[27,690][SEVERE]: CreatePlatformSocket() returned an error, errno=97: Famille d'adresses non supportée par le protocole ( address family not supported)

this error cycle for a while, and in the end it shows me this

12:01:01.718 WARN - Exception: unknown error: Chrome failed to start: exited abnormally
  (Driver info: chromedriver=2.23.409687 (c46e862757edc04c06b1bd88724d15a5807b84d1),platform=Linux 2.6.32-573.el6.x86_64 x86_64) (WARNING: The server did not provide any stacktrace information)

I do not know where to look, is that an error with chrome does not start or the protocol is not supported, or both? I hope someone can help me with this, I tried a lot of things reinstalled chrome with the script, but maybe it has not been cleared, and I still have the wrong version?

+4

Source: https://habr.com/ru/post/1677160/


All Articles