test scripts
mkdir environmentscd environments
python -m venv selenium_env
selenium_env\Scripts\activate.bat
Let's check that we can now use Python. Let's fire up the Python interpreter and write our own version of HelloWorld:
-
(selenium_env) C:\Users\Julia\environments> python -
>>> print("Hello Selenium!")