Reputation: 696
When using the WebDriver driver
for Chrome a chrome window opens, and navigates to the specified page.
Is there a way to stop the window from opening?
Edit: I am using it to scrape the web page so there is no need for me to see the actual webpage. The desired behaviour would be that the scraping would be done "Silently"?
Upvotes: 1
Views: 1283
Reputation: 473863
What you are talking about is called a headless browser.
You have several options to choose from:
xvfb
.PhantomJS
browserSee also:
Upvotes: 2