1.安装环境配置以window11示例
a:直接在Microsoft Store里找到对应的python版本安装即可,目前安装了3.10.
b:验证python是否安装成功
在本地的CMD或者是Windows PowerShell控制台输入python,安装成功如下:
c:通过pip安装playwright,输入命令:pip3 install playwright
d:安装相关依赖驱动文件,输入命令:python3 -m playwright install
e:检验环境是否OK,在Windows PowerShell里输入录制命令: python -m playwright codegen --target python -o open_baidu.py -b chromium https://www.baidu.com
注意:发现一个一个安装依赖太费事了,我们可以一次性根据项目里的requirment.txt里的已经配置好的配置项一次性安装
pip3 install -r requirements.txt
f:在VSCode里安装playwright拓展
g:在vscode中直接编写playwright脚本
至此,完整的playwright环境配置完成,根据自己的项目特点,进行进一步规划,如分层,PO模式等等。