We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c93a057 commit 526b3b8Copy full SHA for 526b3b8
examples/ruby/spec/drivers/options_spec.rb
@@ -33,15 +33,15 @@
33
driver.quit
34
end
35
36
- it 'sets remote capabilities' do
+ it 'sets remote capabilities', skip: 'this is example code that will not execute' do
37
options = Selenium::WebDriver::Options.firefox
38
options.platform_name = 'Windows 10'
39
options.browser_version = 'latest'
40
cloud_options = {}
41
cloud_options[:build] = my_test_build
42
cloud_options[:name] = my_test_name
43
options.add_option('cloud:options', cloud_options)
44
- driver = Selenium::WebDriver.for :remote, url: cloud_url, capabilities: options
+ driver = Selenium::WebDriver.for :remote, capabilities: options
45
driver.get('https://www.google.com')
46
47
0 commit comments