skip to Main Content

Ubuntu – Seleniumbase not logging

I am trying to capture responses using Selenium and undetected, this is working normally using those two: import undetected_chromedriver as uc capabilities = DesiredCapabilities.CHROME capabilities["goog:loggingPrefs"] = {"performance": "ALL"} driver = uc.Chrome(headless=False, desired_capabilities=capabilities) driver.get(url) time.sleep(5) logs_raw = driver.get_log("performance") This is working…

VIEW QUESTION
Back To Top
Search