selenium测试
文章平均质量分 68
Rindy_RR
不想成为设计师的程序媛不是一个好的产品汪
展开
-
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055
Selenium 和 Firefox 版本不兼容的问题解决 在网上找了很久,虽然都说是版本问题,建议降低 Firefox 的版本,或者是升级 Selenium的版本,照着他们的匹配方案,都没有解决我的问题,自己在mvnrepository 上搜索了最新的 selenium-Java Firefox 版本:39.0.3 ,感谢自己没更新,不知道最新的 43 能不能兼容 selenium的52版原创 2016-03-04 15:08:29 · 7786 阅读 · 1 评论 -
selenium-webdriver 关于测试新打开页面报错解决办法
先看一下,从selenium IDE 导出的测试代码package com.test;import static org.junit.Assert.fail;import java.util.concurrent.TimeUnit;import org.junit.After; import org.junit.Before; import org.junit.Test; import org.op原创 2016-03-09 11:40:10 · 29510 阅读 · 2 评论