Reputation: 21375
Most of my skills are in excel automation where you can stop the worksheet flashing while you update it, and only show the user when all your calculations are done.
Selenium web browser is collecting information for me, but every time it does so it opens a new window.
Is there a suppress mechanism to make the window not show up?
Upvotes: 1
Views: 1147
Reputation: 11
Check phantomjs
from selenium import webdriver
driver=webdriver.PhantomJS('your pahtomjs exe file locaiton')
light weighted and nicely integrated with selenium
Also check this: Headless Selenium Testing with Python and PhantomJS
Another option is: splinter
Upvotes: 1