#playwright
#pipenv
#pytest
#python
In this video we learned about below topics:
What is pipenv
How to install pipenv
How to setup Playwright from scratch using pipenv
How to run tests using pipenv
Commands which we used:
pip list
pip install pipenv
pipenv playwright
pipenv install playwright
pipenv install pytest-playwright
pipenv run playwright install
pipenv run pytest -s --headed --browser=webkit
To know more about pipenv, you can read from below site:
https://realpython.com/pipenv-guide/#....