2022-10-28 自动化神器playwright 结合 pytest 1 win10 环境安装教学(2022 最新)

工具介绍

Playwright是微软公司开发的一款非常强大的开源自动化测试工具。之所以强大有以下原因:

支持所有主流浏览器:Chrome、Firefox、Safari、MS Edge。

支持无头模式和有头模式运行。

提供同步、异步的API,可以结合Pytest使用。

支持浏览器端的自动化脚本录制。

针对Python语言的自动化工具。

支持的操作系统有Linux、Mac OS以及Windows。

可以使用docker进行运行环境的安装。

安装环境

安装Python,Playwright需要3.7及以上版本的Python,因此至少要安装Python3.7以上的版本(最好用3.7,我试了下3.8有兼容问题)。

playwrjght官网:https://playwright.dev/docs/browsers

pytest教学:https://www.osgeo.cn/pytest/contents.html

1.首先我们安装python

教学链接

https://blog.csdn.net/hugo233/article/details/122686074

2.安装playwright依赖

win+R  cmd

# 安装 playwright-python 依赖库

pip install playwright


或者在Pycharm中安装

File》Settings》


# 安装浏览器驱动

python -m playwright install


# 录制脚本

python -m playwright codegen

win+R  playwright codegen


或者在pycharm 终端启动都可以



你可能感兴趣的:(2022-10-28 自动化神器playwright 结合 pytest 1 win10 环境安装教学(2022 最新))