How To Run Selenium Chromedriver As Root? (not Working Even With --no-sandbox
I'm trying to run chromedriver to create some selenium tests. I followed this manual to install it. I'm trying to run this code: from selenium import webdriver driver = webdriver.C
Solution 1:
The problem was in chromedriver version. I used version 2.26. After reinstallation to current version (2.35), it starts to work. So, there is only one mandatory argument --no-sandbox
and everything is working now. Thank you again.
Post a Comment for "How To Run Selenium Chromedriver As Root? (not Working Even With --no-sandbox"