I'm doing a simple RPA with python, I had to update the chrome driver manually, but the annoyance was the limit. ..
The following article was useful when I raised my heavy waist and investigated.
https://yuki.world/python-selenium-chromedriver-auto-update/
pip install webdriver_manager --proxy=proxy.hoge.com:8080
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
It was automated. .. great.
that's all
Recommended Posts