File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
rb/spec/integration/selenium/webdriver/spec_support Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 8787 os : ubuntu
8888 - browser : safari
8989 os : windows
90- # TODO: Investigate why they are timing out
91- - browser : chrome
92- os : windows
93- - browser : edge
94- os : windows
9590 with :
9691 name : Local Tests (${{ matrix.browser }}, ${{ matrix.os }})
9792 browser : ${{ matrix.browser }}
Original file line number Diff line number Diff line change @@ -243,15 +243,13 @@ def safari_preview_driver(**opts)
243243 def chrome_options ( args : [ ] , **opts )
244244 opts [ :binary ] ||= ENV [ 'CHROME_BINARY' ] if ENV . key? ( 'CHROME_BINARY' )
245245 args << '--headless=chrome' if ENV [ 'HEADLESS' ]
246- args << '--no-sandbox'
247246 args << '--disable-gpu'
248247 WebDriver ::Options . chrome ( browser_version : 'stable' , args : args , **opts )
249248 end
250249
251250 def edge_options ( args : [ ] , **opts )
252251 opts [ :binary ] ||= ENV [ 'EDGE_BINARY' ] if ENV . key? ( 'EDGE_BINARY' )
253252 args << '--headless=chrome' if ENV [ 'HEADLESS' ]
254- args << '--no-sandbox'
255253 args << '--disable-gpu'
256254 WebDriver ::Options . edge ( browser_version : 'stable' , args : args , **opts )
257255 end
You can’t perform that action at this time.
0 commit comments