can you list the methods or functions you can use to hide selenium output from the program?

I use the below that I found on SO here

    options = webdriver.ChromeOptions()
    # disable some annoying debug output to console
    options.add_argument('--log-level=3')
    options.add_experimental_option('excludeSwitches', ['enable-logging'])

    browser = webdriver.Chrome(
        "C://Program Files (x86)//Google//Chrome//Application//chromedriver.exe", options=options)

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top