jerando
jerando

Reputation: 25

Build Error Jenkins : org.openqa.selenium.WebDriverException: Timed out waiting for driver server to start

Im trying to build a project maven for automationg testiong the scenarios working fine when i excute them on local but when i try to build the job I got this error enter image description here

i already added the chromedriver, the build is on a vm Linux i added the chromedriver for Lunix too

enter image description here

I downloaded the last version of chrome driver.

Thanks

Upvotes: 0

Views: 376

Answers (1)

Jayanth Bala
Jayanth Bala

Reputation: 838

It may be caused by following reasons,

  1. In linux/vm we need to provide executable/higher permission on chrome driver.

chmod 777 chromedriver

  1. if you connecting to remote driver, we need to do port connectivity between machines.

Upvotes: 1

Related Questions