使用selenium启动火狐浏览器,解决Unable to create new remote session问题
今天用火狐浏览器来做自动化,才启动就报错,提示不能创建新的session,不能启动浏览器
问题原因:
火狐driver与火狐浏览器与selenium版本的不兼容
我使用的火狐driver是0.21.0 版本,下载地址:https://github.com/mozilla/geckodriver/releases
使用的火狐浏览器版本是60,下载地址:http://www.firefox.com.cn/download/
使用selenium-java的版本是3.12.0,因为是使用的maven,maven配置为
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.12.0</version> </dependency>
调试的代码为
public class firefoxsrun { WebDriver driver; @BeforeClass public void beforeClass(){ System.setProperty("webdriver.gecko.driver", "resources/geckodriver.exe"); driver = new FirefoxDriver(); driver.get("http://www.baidu.com"); } @Test public void test2(){ System.out.println("成功啦"); driver.findElement(By.id("kw")).sendKeys("testurl"); driver.findElement(By.id("su")).click(); } }
我的diver就放在我的项目目录下的resource下
作者:做梦的人(小姐姐) 出处:https://www.cnblogs.com/chongyou/ 本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。 如果文中有什么错误,欢迎指出。以免更多的人被误导。 微信号:18582559217 |