From 2776d8446bc81ac7cf62bcb0829ec99df802395c Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Tue, 10 Oct 2023 16:15:40 +0200 Subject: [PATCH] docs: how to update playwright in python (#27527) --- docs/src/intro-python.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/src/intro-python.md b/docs/src/intro-python.md index c4e4f778fe173..ec3377a956b94 100644 --- a/docs/src/intro-python.md +++ b/docs/src/intro-python.md @@ -85,6 +85,14 @@ By default tests will be run on chromium. This can be configured via the [CLI op pytest ``` +## Updating Playwright + +To update Playwright to the latest version run the following command: + +```bash +pip install pytest-playwright playwright -U +``` + ## System requirements - Python 3.8 or higher.