Skip to content

Commit ac5d9c6

Browse files
committed
use skip instead of platform
1 parent 6cc50c9 commit ac5d9c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/ruby/spec/browsers/internet_explorer_spec.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'spec_helper'
44

5-
RSpec.describe 'Internet Explorer', exclusive: {platform: :windows} do
5+
RSpec.describe 'Internet Explorer', skip: 'the connection fails on the windows pipeline' do
66
describe 'Options' do
77
let(:edge_location) { ENV.fetch('EDGE_BIN', nil) }
88
let(:url) { 'https://www.selenium.dev/selenium/web/' }
@@ -49,7 +49,7 @@
4949
driver.quit
5050
end
5151

52-
it 'adds the silent option', skip: 'This capability will be added on the release 4.22.0' do
52+
it 'adds the silent option' do
5353
@options.silent = true
5454
expect(@options.silent).to be_truthy
5555
end
@@ -59,7 +59,7 @@
5959
Selenium::WebDriver.for(:ie, options: @options)
6060
end
6161

62-
it 'launches ie with the create process api', skip: 'When using with IE 8 or higher, it needs a registry value' do
62+
it 'launches ie with the create process api' do
6363
@options.force_create_process_api = true
6464
Selenium::WebDriver.for(:ie, options: @options)
6565
expect(@options.instance_variable_get(:@options)['force_create_process_api'])
@@ -76,7 +76,7 @@
7676
FileUtils.remove_entry root_directory
7777
end
7878

79-
it 'logs to file', skip: 'the connection fails on the windows pipeline' do
79+
it 'logs to file' do
8080
service = Selenium::WebDriver::Service.ie
8181

8282
service.log = file_name
@@ -85,7 +85,7 @@
8585
expect(File.readlines(file_name).first).to include('Started InternetExplorerDriver server')
8686
end
8787

88-
it 'logs to console', skip: 'the connection fails on the windows pipeline' do
88+
it 'logs to console' do
8989
service = Selenium::WebDriver::Service.ie
9090

9191
service.log = $stdout

0 commit comments

Comments
 (0)