File tree 1 file changed +3
-3
lines changed
javascript/node/selenium-webdriver/test/bidi
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ suite(
348
348
let info = await browsingContext . navigate ( Pages . logEntryAdded )
349
349
350
350
assert . notEqual ( browsingContext . id , null )
351
- assert . equal ( info . navigationId , null )
351
+ assert . notEqual ( info . navigationId , null )
352
352
assert ( info . url . includes ( '/bidi/logEntryAdded.html' ) )
353
353
} )
354
354
@@ -363,7 +363,7 @@ suite(
363
363
)
364
364
365
365
assert . notEqual ( browsingContext . id , null )
366
- assert . equal ( info . navigationId , null )
366
+ assert . notEqual ( info . navigationId , null )
367
367
assert ( info . url . includes ( '/bidi/logEntryAdded.html' ) )
368
368
} )
369
369
@@ -1962,7 +1962,7 @@ suite(
1962
1962
const info = await browsingContext . navigate ( Pages . logEntryAdded )
1963
1963
1964
1964
assert . notEqual ( browsingContext . id , null )
1965
- assert . equal ( info . navigationId , null )
1965
+ assert . notEqual ( info . navigationId , null )
1966
1966
assert ( info . url . includes ( '/bidi/logEntryAdded.html' ) )
1967
1967
1968
1968
await driver . wait ( until . urlIs ( Pages . logEntryAdded ) )
You can’t perform that action at this time.
0 commit comments