@@ -81,7 +81,9 @@ class BiDi
81
81
expect ( driver . execute_script ( 'return window.devicePixelRatio' ) ) . to eq ( 2.0 )
82
82
end
83
83
84
- it 'accepts users prompts without text' do
84
+ it 'accepts users prompts without text' ,
85
+ except : { browser : %i[ edge chrome ] ,
86
+ reason : 'https://github.com/GoogleChromeLabs/chromium-bidi/issues/3281' } do
85
87
browsing_context = described_class . new ( bridge )
86
88
87
89
driver . navigate . to url_for ( 'alerts.html' )
@@ -94,7 +96,9 @@ class BiDi
94
96
expect ( driver . title ) . to eq ( 'Testing Alerts' )
95
97
end
96
98
97
- it 'accepts users prompts with text' do
99
+ it 'accepts users prompts with text' ,
100
+ except : { browser : %i[ edge chrome ] ,
101
+ reason : 'https://github.com/GoogleChromeLabs/chromium-bidi/issues/3281' } do
98
102
browsing_context = described_class . new ( bridge )
99
103
driver . navigate . to url_for ( 'alerts.html' )
100
104
driver . find_element ( id : 'prompt' ) . click
@@ -106,7 +110,8 @@ class BiDi
106
110
expect ( driver . title ) . to eq ( 'Testing Alerts' )
107
111
end
108
112
109
- it 'rejects users prompts' do
113
+ it 'rejects users prompts' , except : { browser : %i[ edge chrome ] ,
114
+ reason : 'https://github.com/GoogleChromeLabs/chromium-bidi/issues/3281' } do
110
115
browsing_context = described_class . new ( bridge )
111
116
driver . navigate . to url_for ( 'alerts.html' )
112
117
driver . find_element ( id : 'alert' ) . click
0 commit comments