Cannot find Chrome binary when executing a selenium (testng) test in jenkins on windows 7

后端 未结 13 1710
太阳男子
太阳男子 2020-12-29 10:22

I have a basic login test with selenium and testng. When executed from eclipse, it works as expected and invoke Google Chrome. If executed from TESTNG command line, it works

13条回答
  •  渐次进展
    2020-12-29 10:57

    It worked for me. I have coded as below

    ChromeOptions chromeOptions= new ChromeOptions(); 
    
    chromeOptions.setBinary("C:\\Users\\kannanu\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe");
    System.setProperty("webdriver.chrome.driver",ChromeExePath);
    ChromeDriver driver = new ChromeDriver(chromeOptions); 
    driver.get("http://newtours.demoaut.com/");
    

提交回复
热议问题