|
2 | 2 |
|
3 | 3 | require 'spec_helper' |
4 | 4 |
|
5 | | -RSpec.describe 'Internet Explorer', exclusive: {platform: :windows} do |
| 5 | +RSpec.describe 'Internet Explorer', skip: 'the connection fails on the windows pipeline' do |
6 | 6 | describe 'Options' do |
7 | 7 | let(:edge_location) { ENV.fetch('EDGE_BIN', nil) } |
8 | 8 | let(:url) { 'https://www.selenium.dev/selenium/web/' } |
|
49 | 49 | driver.quit |
50 | 50 | end |
51 | 51 |
|
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 |
53 | 53 | @options.silent = true |
54 | 54 | expect(@options.silent).to be_truthy |
55 | 55 | end |
|
59 | 59 | Selenium::WebDriver.for(:ie, options: @options) |
60 | 60 | end |
61 | 61 |
|
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 |
63 | 63 | @options.force_create_process_api = true |
64 | 64 | Selenium::WebDriver.for(:ie, options: @options) |
65 | 65 | expect(@options.instance_variable_get(:@options)['force_create_process_api']) |
|
76 | 76 | FileUtils.remove_entry root_directory |
77 | 77 | end |
78 | 78 |
|
79 | | - it 'logs to file', skip: 'the connection fails on the windows pipeline' do |
| 79 | + it 'logs to file' do |
80 | 80 | service = Selenium::WebDriver::Service.ie |
81 | 81 |
|
82 | 82 | service.log = file_name |
|
85 | 85 | expect(File.readlines(file_name).first).to include('Started InternetExplorerDriver server') |
86 | 86 | end |
87 | 87 |
|
88 | | - it 'logs to console', skip: 'the connection fails on the windows pipeline' do |
| 88 | + it 'logs to console' do |
89 | 89 | service = Selenium::WebDriver::Service.ie |
90 | 90 |
|
91 | 91 | service.log = $stdout |
|
0 commit comments