I'm using Selenium with python.
and I'm getting these in the output:
Which I want to skip. So please tell me how can I skip these warnings.
I'm using Selenium with python.
and I'm getting these in the output:
Which I want to skip. So please tell me how can I skip these warnings.
To suppress the DEBUG logs you can use add_experimental_option()
through an instance of Options()
as follows:
options = Options()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(executable_path=r'C:\BrowserDrivers\chromedriver.exe', options=options)
driver.get("https://www.google.com/")