Selenium-proxy-authentication icon indicating copy to clipboard operation
Selenium-proxy-authentication copied to clipboard

Traffic usage spiked after adding extension

Open alexriabukha-qc opened this issue 1 year ago • 1 comments

Good day, and thank you for the example - it's very useful. I've noticed that after adding this extension to Selenium Wire, there has been a significant increase in traffic to "https://optimizationguide-pa.googleapis.com/*", consuming around 17GB in just a few days. Have you experienced anything similar?

alexriabukha-qc avatar Jul 14 '24 14:07 alexriabukha-qc

Hey, I believe the traffic to that URL likely happens due to Chrome's optimization and prediction services if you're using the Chrome WebDriver. You can add these arguments to prevent it from making these requests:

chrome_options.add_argument("--disable-features=OptimizationHints")
chrome_options.add_argument("--disable-usage-stats")
chrome_options.add_argument("--disable-crash-reporter")

Let me know if this helps.

sakanamk avatar Jul 19 '24 08:07 sakanamk