No need to download webdriver
See original GitHub issueI saw you’re using chromedriver manually. You can use the code below which download each time you run the code & will be kept under cache until it expires. You don’t need to manually download chromedriver each time & put it in the folder. You need to install a module for it.
import chromedriver_autoinstaller
opt = webdriver.ChromeOptions()
opt.add_argument("--start-maximized")
chromedriver_autoinstaller.install()
driver = webdriver.Chrome(options=opt)
For geckodriver, import & use geckodriver_autoinstaller .
Issue Analytics
- State:
- Created a year ago
- Comments:7 (3 by maintainers)
 Top Results From Across the Web
Top Results From Across the Web
Install browser drivers - Selenium
Through WebDriver, Selenium supports all major browsers on the market such as Chrome/Chromium, Firefox, Internet Explorer, Edge, and Safari.
Read more >Is it possible to use selenium webdriver without downloading ...
Short answer: No, it is not possible to use Selenium without downloading the jar files. The jar's are Selenium. Therefor you need them...
Read more >No More Driver EXE files for Selenium Execution
No need to download the chrome.exe,geckodriver.exe files etc.. · No need to set driver exe file path in selenium program · No need...
Read more >How to download Chrome Driver for Selenium
You will need to use these drivers when you want to run your automation scripts on their corresponding browsers. Why have we selected...
Read more >WebDriver for Chrome - Downloads
If you are using Chrome version 109, please download ChromeDriver 109.0.5414.25 ... Resolved issue 4198: ChromeDriver BiDi should not assume that BiDiMapper ...
Read more > Top Related Medium Post
Top Related Medium Post
No results found
 Top Related StackOverflow Question
Top Related StackOverflow Question
No results found
 Troubleshoot Live Code
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free Top Related Reddit Thread
Top Related Reddit Thread
No results found
 Top Related Hackernoon Post
Top Related Hackernoon Post
No results found
 Top Related Tweet
Top Related Tweet
No results found
 Top Related Dev.to Post
Top Related Dev.to Post
No results found
 Top Related Hashnode Post
Top Related Hashnode Post
No results found

Hi @donheshanthaka - I have assigned this to @nitinkumar30 as he reported this at first. I give him the first chance, so assigned it to him.
Sure I will add
On Wed, Sep 28, 2022 at 1:53 PM Nitin Kumar @.***> wrote: