言简意赅的说下Selenium是什么
Selenium是前台测试框架,支持IE(7, 8, 9, 10, 11),Mozilla Firefox,Safari,Google Chrome等浏览器,我只试了这四个,别的大家用的时候可以试下。
用脚本可以模拟网页的点击,输入,提交,验证等操作。
可参照下列网站进行学习:
1.https://selenium-python-zh.readthedocs.io/en/latest/installation.html(中文)
2.https://selenium-python.readthedocs.io/index.html(英文)
安装/运行Demo:
1.Python官方网站下载最新版Python
https://www.python.org/downloads/
2.通过pip下载安装Selenium
也可以直接进入Python的Scripts目录,按住Shift+鼠标右键,选择PowerShell窗口。
注意有提示升级Pip的时候根据命令升级你的PIP
D:\>cd D:\python\Scripts D:\python\Scripts>pip install selenium