The title says it all, I want to programmatically get the version of Selenium I have installed on my Python environment.
The title says it all, I want to programmatically get the version of Selenium I have installed on my Python environment.
You can try:
pip list
conda list
or for example on MAC:
brew listAnd then check if and what version is in your installed package list.
For conda you might have different environments. Change it by conda activate myenv where myenv is the name of your second or more test environments.
Please Use below command to see the version of the libraries that would have been installed using pip
pip freeze
It will list all the used libraries with their versions.