My acquaintance asked me about various test tools, I decided to challenge Selenium.
After using the browser extension Selenium IDE https://github.com/SeleniumHQ/selenium-ide
Selenium using Python pip : Virtualenv/VirtualenvWrapper
from selenium import webdriver
browser = webdriver.Chrome();
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
If you try to download it from the above site, you need to re-download it with VERSION.
pip install webdriver_manager
After downloading
https://github.com/SergeyPirogov/webdriver_See manager
#### **`python`**
```python
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
browser = webdriver.Chrome();
from webdriver_manager.chrome import Chrome Driver Manager added
Recommended Posts