最新回答 / 拾阶而上
最新版的firefox不支持firebug 和firepath。如果要用,只能下载低版本的firefox。我下载的32.9.1.1的firefox。firebug不用下载。对应selenium IDE v2.9.1.1可以用。firepath-0.9.7-fx安装了这个版本,但是不能用,现在没用到,没有试其他的,可以下其他版本的试试。
2019-03-09
最新回答 / Sher__locked
我跟你遇到了同样的问题,现在已经解决。selenium Webdriver目前支持到JDK8,确保使用JDK8,地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html。 然后下载chromedriver,需要和你谷歌浏览器的版本对应,这是下载chromedriver的地址,选择对应的版本:https://chromedriver.storage.googleapis.com/index....
2019-02-24
这段文字放在txt,另存为html格式后 选择浏览器打开就可以看到老师的那个页面的表格 ,由于字数限制我只写
<html>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<table border="1">
<tr>
<th>第一行第一列</th>
<th>第一行第二列</th>
<th>第一行第三列</th>
<th>第一行第四列</th>
<th>第一行第五列</th>
</tr>
</table>
</body>
</html>
<html>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<table border="1">
<tr>
<th>第一行第一列</th>
<th>第一行第二列</th>
<th>第一行第三列</th>
<th>第一行第四列</th>
<th>第一行第五列</th>
</tr>
</table>
</body>
</html>
2019-02-21