线程" main"中的例外情况java.lang.IllegalStateException:在Ubuntu上运行Selenium Test时,驱动程序可执行文件不存在

时间:2018-04-19 12:10:22

标签: java selenium ubuntu selenium-webdriver geckodriver

我在eclipse中试过这段代码:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class auto {

    public static void main(String[] args) {
        System.setProperty("webdriver.gecko.driver", "/root/Desktop/jarselenium/geckodriver.exe");
        WebDriver driver = new FirefoxDriver();
        driver.manage().window().maximize();
        driver.get("https://www.easybooking.lk/login");
        //driver.manage().timeouts().implicitlyWait(25, TimeUnit.SECONDS); 
    }
}

执行时我遇到了这个错误:

Exception in thread "main" java.lang.IllegalStateException: The driver executable does not exist: /root/Desktop/jarselenium/geckodriver.exe

如何在ubuntu中设置geckodriver位置?

1 个答案:

答案 0 :(得分:1)

当您使用基于Linux的系统同时指定 GeckoDriver 的绝对路径时,您必须修剪扩展部分,即.exe部分,如下所示:< / p>

System.setProperty("webdriver.gecko.driver", "/root/Desktop/jarselenium/geckodriver");

更新

当您仍然看到错误时,请确保:

  1. GeckoDriver 出现在指定位置。
  2. GeckoDriver 具有非root用户的可执行权限。 (chmod 777)
  3. 以非root用户身份执行@Test