File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -285,10 +285,6 @@ def clear_cookies
285
285
browser . cookies . clear
286
286
end
287
287
288
- def wait_for_network_idle ( **options )
289
- browser . network . wait_for_idle ( **options )
290
- end
291
-
292
288
def clear_memory_cache
293
289
browser . network . clear ( :cache )
294
290
end
Original file line number Diff line number Diff line change 17
17
options . merge! ( inspector : true ) if ENV [ "INSPECTOR" ]
18
18
options . merge! ( logger : StringIO . new )
19
19
driver = Capybara ::Cuprite ::Driver . new ( app , options )
20
- process = driver . browser . process
21
- puts process . command . to_a . join ( " " )
22
- puts process . browser_version
20
+ puts driver . browser . process . cmd . join ( " " )
21
+ puts `"#{ driver . browser . process . path } " -version --headless --no-gpu`
23
22
driver
24
23
end
25
24
You can’t perform that action at this time.
0 commit comments