Python Forum
Problem with Selenium webdriver - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Problem with Selenium webdriver (/thread-36019.html)



Problem with Selenium webdriver - Fred - Jan-10-2022

Hello all,

I imported the selenium librery and the Chrome driver with the version compatible with the chrome browser

I try this simple code

from selenium import webdriver
driver = webdriver ( <chrome path> )

and I have an error reported:

Your credential are missing . You will not be permitted access until your credentials can be written


I don't know how to solve this simple problem, is there a way to pass the credentials with the options library and options.add_arguments before calling the constructor ?


RE: Problem with Selenium webdriver - Larz60+ - Jan-10-2022

Please show full code, or at least enough to be able to run, and reproduce errors.
Include everything needed to run.