@@ -81,7 +81,9 @@ class BiDi
8181 expect ( driver . execute_script ( 'return window.devicePixelRatio' ) ) . to eq ( 2.0 )
8282 end
8383
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
8587 browsing_context = described_class . new ( bridge )
8688
8789 driver . navigate . to url_for ( 'alerts.html' )
@@ -94,7 +96,9 @@ class BiDi
9496 expect ( driver . title ) . to eq ( 'Testing Alerts' )
9597 end
9698
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
98102 browsing_context = described_class . new ( bridge )
99103 driver . navigate . to url_for ( 'alerts.html' )
100104 driver . find_element ( id : 'prompt' ) . click
@@ -106,7 +110,8 @@ class BiDi
106110 expect ( driver . title ) . to eq ( 'Testing Alerts' )
107111 end
108112
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
110115 browsing_context = described_class . new ( bridge )
111116 driver . navigate . to url_for ( 'alerts.html' )
112117 driver . find_element ( id : 'alert' ) . click
0 commit comments