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 87
87
os : ubuntu
88
88
- browser : safari
89
89
os : windows
90
- # TODO: Investigate why they are timing out
91
- - browser : chrome
92
- os : windows
93
- - browser : edge
94
- os : windows
95
90
with :
96
91
name : Local Tests (${{ matrix.browser }}, ${{ matrix.os }})
97
92
browser : ${{ matrix.browser }}
Original file line number Diff line number Diff line change @@ -243,15 +243,13 @@ def safari_preview_driver(**opts)
243
243
def chrome_options ( args : [ ] , **opts )
244
244
opts [ :binary ] ||= ENV [ 'CHROME_BINARY' ] if ENV . key? ( 'CHROME_BINARY' )
245
245
args << '--headless=chrome' if ENV [ 'HEADLESS' ]
246
- args << '--no-sandbox'
247
246
args << '--disable-gpu'
248
247
WebDriver ::Options . chrome ( browser_version : 'stable' , args : args , **opts )
249
248
end
250
249
251
250
def edge_options ( args : [ ] , **opts )
252
251
opts [ :binary ] ||= ENV [ 'EDGE_BINARY' ] if ENV . key? ( 'EDGE_BINARY' )
253
252
args << '--headless=chrome' if ENV [ 'HEADLESS' ]
254
- args << '--no-sandbox'
255
253
args << '--disable-gpu'
256
254
WebDriver ::Options . edge ( browser_version : 'stable' , args : args , **opts )
257
255
end
You can’t perform that action at this time.
0 commit comments