File tree Expand file tree Collapse file tree 4 files changed +4
-17
lines changed
javascript/node/selenium-webdriver/test
java/test/org/openqa/selenium/devtools
rb/spec/integration/selenium/webdriver Expand file tree Collapse file tree 4 files changed +4
-17
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ java_selenium_test_suite(
77 srcs = glob (["*Test.java" ]),
88 browsers = [
99 "chrome" ,
10- "firefox" ,
1110 "edge" ,
1211 ],
1312 tags = [
Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ public static void stopServer() {
6161 }
6262
6363 @ Test
64- @ NotYetImplemented (value = Browser .FIREFOX , reason = "Network interception not yet supported" )
6564 public void networkInterceptorAndAuthHandlersDoNotFight () {
6665 assumeThat (driver ).isInstanceOf (HasAuthentication .class );
6766
@@ -95,7 +94,6 @@ public void networkInterceptorAndAuthHandlersDoNotFight() {
9594 }
9695
9796 @ Test
98- @ NotYetImplemented (value = Browser .FIREFOX , reason = "Network interception not yet supported" )
9997 public void canAuthenticate () {
10098 assumeThat (driver ).isInstanceOf (HasAuthentication .class );
10199
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ suite(
118118
119119 describe ( 'Network Interception' , function ( ) {
120120 ignore (
121- browsers ( Browser . SAFARI ) . it ( 'Allows network requests to be captured and mocked' , async function ( ) {
121+ browsers ( Browser . SAFARI ) ) . it ( 'Allows network requests to be captured and mocked' , async function ( ) {
122122 const connection = await driver . createCDPConnection ( 'page' )
123123 let url = fileServer . whereIs ( '/cheese' )
124124 let httpResponse = new HttpResponse ( url )
@@ -129,7 +129,7 @@ suite(
129129 assert . strictEqual ( body . includes ( 'sausages' ) , true , `Body contains: ${ body } ` )
130130 } )
131131 await driver . get ( url )
132- } ) ,
132+ } ,
133133 )
134134 } )
135135 } ,
Original file line number Diff line number Diff line change @@ -112,19 +112,9 @@ module WebDriver
112112 expect ( logs ) . to include (
113113 an_object_having_attributes ( type : :log , args : [ hash_including ( 'type' => 'object' ) ] )
114114 )
115- end
116-
117- it 'notifies about document log messages' do
118- logs = [ ]
119- driver . on_log_event ( :console ) { |log | logs . push ( log ) }
120- driver . navigate . to url_for ( 'javascriptPage.html' )
121-
122- driver . execute_script ( 'console.log(document);' )
123- wait . until { !logs . empty? }
124-
125115 expect ( logs ) . to include (
126- an_object_having_attributes ( type : :log , args : [ hash_including ( 'location' ) ] )
127- )
116+ an_object_having_attributes ( type : :log , args : [ hash_including ( 'location' ) ] )
117+ )
128118 end
129119
130120 it 'notifies about exceptions' do
You can’t perform that action at this time.
0 commit comments