File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
chrome_options = Options ()
19
19
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" )
22
30
23
31
driver = webdriver .Chrome (args .pathToChromedriver ,options = chrome_options )
24
32
for i in range (args .tries ):
64
72
except NoSuchElementException :
65
73
pass
66
74
break
67
- driver .quit ()
75
+ driver .quit ()
You can’t perform that action at this time.
0 commit comments