1、环境安装
nodejs安装
webdriver安装,安装各浏览器的驱动,通过各浏览器的驱动程序,操作浏览器。
chrome 驱动安装
每个版本的浏览器用到的webdriver不同。可以通过chrome右上角-> 帮助 -> 关于 Chrome 查看当前版本。
chromedriver下载地址和chromedriver与chrome之间的对应关系。跳转门
并将驱动程序所在目录添加至环境变量
其他浏览器驱动可以见下面列表:
- firefox(火狐浏览器):github.com/mozilla/gec...
- Edge:developer.microsoft.com/en-us/micrs...
- Safari:webkit.org/blog/6900/w...
2、代码实现自动化测试
python
npm init
npm install selenium-webdriver
// index.js
const {Builder, By, Key, until} = require('selenium-webdriver');
const {Options} = require('selenium-webdriver/chrome');
var driver = new Builder()
.forBrowser('chrome')
.setChromeOptions(new Options().excludeSwitches(["ignore-certificate-errors", 'user-data-dir="C:\\Users\\qiang\\AppData\\Local\\Google\\Chrome\\User Data"']))
.build();
driver.get('https://image.baidu.com/')
.then(function () {
driver.findElement(By.id('search')).then(async (res)=>{
console.log('res',await res.getText())
})
}).catch(function (e) {
console.log(e);
});
3、By XPATH和CSS定位比较
最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:
这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!