selenium用于自动化测试,已普遍应用于B/S架构系统。所以决定使用selenium+python完成自动化测试场景(主要基于chrome内核浏览器)
本文主要介绍:利用selenium+python,通过chrome浏览器打开qq.com
假设前提:
1.使用win10操作系统
2.本地已安装python
步骤:
1.利用pip下载selenium依赖;
2.根据chrome当前版本,下载chromedriver.exe;
3.配置chromedriver环境变量;
4.编写python代码,打开qq.com;
步骤1:
pip install -U selenium
步骤2:
下载chromedriver.exe,下载地址:https://chromedriver.chromium.org/downloads
因我本地chrome版本是98,所以下载对应exe
步骤3:
配置chromedriver环境变量(我的chromedriver位于E:\tools\chromedriver)
步骤4:
编写python代码打开qq.com
from selenium import webdriver def main(): print("hello world") browser = webdriver.Chrome() browser.get('http://qq.com/') # Press the green button in the gutter to run the script. if __name__ == '__main__': main()
运行上述代码,则可以通过Chrome打开qq.com网页:
参考地址:
https://pypi.org/project/selenium/