No logging phantomjs

This commit is contained in:
shortcutme 2017-01-27 14:00:41 +01:00
parent 8b2920c296
commit 8a75f200ca
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -165,7 +165,7 @@ def browser():
try:
from selenium import webdriver
print "Starting phantomjs..."
browser = webdriver.PhantomJS(executable_path=PHANTOMJS_PATH)
browser = webdriver.PhantomJS(executable_path=PHANTOMJS_PATH, service_log_path=os.path.devnull)
print "Set window size..."
browser.set_window_size(1400, 1000)
except Exception, err: