We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95a18c commit f9c610cCopy full SHA for f9c610c
1 file changed
examples/ruby/spec/browsers/safari_spec.rb
@@ -32,11 +32,13 @@
32
end
33
34
35
- it 'sets the technology preview',
36
- except: {ci: true, reason: 'GitHub Actions does not support Technology Preview'} do
37
- Selenium::WebDriver::Safari.technology_preview!
38
- local_driver = Selenium::WebDriver.for :safari
39
- expect(local_driver.capabilities.browser_name).to eq 'Safari Technology Preview'
+ describe 'Technology Preview' do
+ it 'toggles version',
+ except: {ci: 'github', reason: 'GitHub Actions does not support Technology Preview'} do
+ Selenium::WebDriver::Safari.technology_preview!
+ @driver = Selenium::WebDriver.for :safari
40
+ expect(@driver.capabilities.browser_name).to eq 'Safari Technology Preview'
41
+ end
42
43
44
0 commit comments