我可以回答你第二个问题。要更新 selenium-server-standalone 版本,您必须执行以下步骤:
1) 下载最新版本的 selenium-server-standalone
2) 放入 YourJenkinsHomeDirectory/plugins/selenium/WEB-INF/lib
3) 编辑 YourJenkinsHomeDirectory/plugins/selenium/WEB-INF 中的 licenses.xml 文件
编辑以下内容(编辑以粗体突出显示的文本。粘贴您的 selenium-server-standalone 版本的值):
l:dependency name='未命名 - org.seleniumhq.selenium:selenium-server-standalone:pom: 2.39.0 ' groupId='org.seleniumhq.selenium' artifactId='selenium-server-standalone' version=' 2.39.0 '
保存存档
4)转到YourJenkinsHomeDirectory/Home/plugins/selenium/META-INF/maven/org.jenkins-ci.plugins/selenium
5) 编辑 pom.xml
比找到下一个:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server-standalone</artifactId>
<version>2.39.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.39.0</version>
<scope>test</scope>
</dependency>
</dependencies>
并<version>2.39.0</version>
在两个块中进行编辑。粘贴 selenium-server-standalone 版本的值
保存存档
6)重新启动你的詹金斯(简单地去这个http://your-jenkins-url/restart
)默认的url是:http://localhost:8080
。现在詹金斯应该重新启动
7)转到您的 Selenium Grid 中心http://localhost:4444/grid/console
8)现在你应该看到你的更新版本
祝你好运 :)