ModuleNotFoundError: No module named ‘webdriver_manager’ error even after installing webdrivermanager

Update (thanks to Vishal Kharde)

The documentation now suggests:

pip install webdriver-manager

Solution:

Install it like that:

pip install webdriver_manager

instead of pip install webdrivermanager.

Requirements:

The newest version, according to the documentation supports python 3.6 or newer versions:

enter image description here

Reference:
https://pypi.org/project/webdriver-manager/

Leave a Comment