测试用例没有运行iin selenium webdriver

时间:2017-08-28 08:01:15

标签: selenium-webdriver

我尝试使用以下代码在本地系统中打开URL。但是我收到错误信息,如屏幕截图所示。

代码

Select user, city where id = any(:arrayOfIds)

error message

我该怎么做才能解决这个问题?感谢名单!

3 个答案:

答案 0 :(得分:2)

您需要安装gecko驱动程序。有关它以及如何安装gecko驱动程序的简要介绍可以在以下链接中找到。希望这可以帮助!

Gecko Driver是Selenium和Firefox浏览器中测试之间的链接

http://toolsqa.com/selenium-webdriver/how-to-use-geckodriver/

答案 1 :(得分:0)

我从github安装了gecko驱动程序并将其放在我工作场所的文件夹位置并且它有效!

working result

答案 2 :(得分:0)

下载geckodriver并使用此代码:

System.setProperty("webdriver.gecko.driver", "E:/software and tools/geckodriver.exe");
WebDriver driver= new ChromeDriver();
//Launch the Website
driver.get("http://127.0.0.1:3000");
// Print a Log In message to the screen
System.out.println("Successfully opened the website ");
// Close the driver
 driver.quit();