Ali Salehi
Ali Salehi

Reputation: 6999

Restricting Selenium/Webdriver/HtmlUnit to a certain domain

While using selenium/webdriver for web scraping, I realized the target site has google analytics script running. Is there a way to restrict selenium/webdriver/htmlunit to avoid certain urls/domains ?

Thanks,

Upvotes: 6

Views: 858

Answers (1)

yura
yura

Reputation: 14645

I think it is impossible becouse Selenium is actually adapter for several implementation. So he can't deny to load some scripts to firefox or chrome. Perhaps you can check driver api(firefox profile, htmlunit configuration file) to accomplish this.

Upvotes: 3

Related Questions