Skip to content

Commit 4432696

Browse files
authored
Update scheduler.py
-fix issues w/ headless mode
1 parent 8c375fc commit 4432696

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

scheduler.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@
1717

1818
chrome_options = Options()
1919
chrome_options.add_argument('--incognito')
20-
if args.d: chrome_options.add_argument(args.d)
21-
chrome_options.add_argument("--window-size=1792,1120") # ensure this matches your screen resolution
20+
if args.d:
21+
# ensure proper functioning for headless
22+
chrome_options.add_argument("--window-size=1920,1080")
23+
chrome_options.add_argument("--disable-gpu")
24+
chrome_options.add_argument("--disable-extensions")
25+
chrome_options.add_argument("--proxy-server='direct://'")
26+
chrome_options.add_argument("--proxy-bypass-list=*")
27+
chrome_options.add_argument("--start-maximized")
28+
chrome_options.add_argument("--headless")
29+
chrome_options.add_argument("no-sandbox")
2230

2331
driver = webdriver.Chrome(args.pathToChromedriver,options=chrome_options)
2432
for i in range(args.tries):
@@ -64,4 +72,4 @@
6472
except NoSuchElementException:
6573
pass
6674
break
67-
driver.quit()
75+
driver.quit()

0 commit comments

Comments
 (0)