Powershell:
Get-ExecutionPolicy
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/pyenv-win/pyenv-win/master/pyenv-win/install-pyenv-win.ps1" -OutFile "./install-pyenv-win.ps1"; &"./install-pyenv-win.ps1"
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
restart powershell
pyenv --version
https://github.com/pyenv-win/pyenv-win
Install Python.
Download Chromedriver ( same version of chrome installed) : https://chromedriver.chromium.org/downloads
Copy EXE to C:\Windows
Get LTS version.
https://www.oracle.com/java/technologies/downloads/
Download Selenium Server selenium-server-standalone, any version:
https://selenium-release.storage.googleapis.com/index.html?path=3.5/
selenium-server-standalone-3.5.3.jar
Run Selenium Server:
java -jar .\selenium-server-standalone-3.5.3.jar
Python Selenium:
pip install selenium
Selenium IDE:
https://www.selenium.dev/selenium-ide/
https://www.youtube.com/watch?v=m4KpTvEz3vg
Test remote save page currently open.
https://datawookie.dev/blog/2021/01/persistent-selenium-sessions/
Common Commands
https://www.browserstack.com/guide/python-selenium-to-run-web-automation-test
Element Commands:
https://www.geeksforgeeks.org/element-methods-in-selenium-python/
Keys:
https://artoftesting.com/press-enter-tab-space-arrow-function-keys-in-selenium-webdriver-with-java