概述
我希望使用Selenium和HtmlUnit进行Web应用测试。使用Python驱动
按照网上的安装说明,在Python安装了Selenium的封装包,并且下载了Selenium-Server-Standalone.jar,启动。使用如下程序进行测试:
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium import webdriver
htmlunit = webdriver.Remote(desired_capabilities=DesiredCapabilities.HTMLUNIT)
htmlunit.get("http://www.baidu.com")
print(htmlunit.title)
结果出来一大堆异常信息,提示不能创建htmlunit类型的会话。花了一整天的时间查找错误原因。
经过艰苦的查询,发现原来需要在启动服务器时同时添加HtmlUnit的jar库。
总结方法如下:
1 Python端需要安装selenium的封装库
2 需要下载selenium-server-standalone-xxx.jar和htmlunit-driver-xxx-jar-with-dependencies.jar
3 启动命令为(版本数字需要替换为实际的版本号):
java -cp "htmlunit-driver-2.35.1-jar-with-dependencies.jar;selenium-server-standalone-3.141.59.jar" org.openqa.grid.selenium.GridLauncherV3
启动服务器之后,终于测试成功。
最后
以上就是懦弱方盒为你收集整理的使用Selenium和HtmlUnit进行Web测试的全部内容,希望文章能够帮你解决使用Selenium和HtmlUnit进行Web测试所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复