如何在linux命令行无界面下,使用selenium进行自动化测试
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
selenium相信做自动化测试的童鞋并不陌生,但平常都是在windows下进行脚本运行。
如果换成linux呢?命令行的linux如何去进行自动化测试呢?
答案是:使用phantomJS配合selenium,可以创建无界面的浏览器,这样即可达到我们的目的。
配置方法:
1.安装phantomJS
http://www.phperz.com/article/14/1115/35197.html
2.安装selenium
pip install selenium
到这里。环境就配置好了。接下来就可以上代码了。
3.示例代码
from selenium import webdriver
driver = webdriver.PhantomJS(executable_path='/bin/phantomjs/bin/phantomjs')#这里的executable_path填你phantomJS的路径
driver.get('http://www.so.com')
print driver.title
driver.quit()
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)