@@ -24,7 +24,7 @@ const { Browser, By, WebElement } = require('../../')
2424const { Pages, suite } = require ( '../../lib/test' )
2525const logInspector = require ( '../../bidi/logInspector' )
2626const BrowsingContext = require ( '../../bidi/browsingContext' )
27- const BrowsingConextInspector = require ( '../../bidi/browsingContextInspector' )
27+ const BrowsingContextInspector = require ( '../../bidi/browsingContextInspector' )
2828const NetworkInspector = require ( '../../bidi/networkInspector' )
2929const filterBy = require ( '../../bidi/filterBy' )
3030const until = require ( '../../lib/until' )
@@ -682,7 +682,7 @@ suite(
682682 describe ( 'Browsing Context Inspector' , function ( ) {
683683 it ( 'can listen to window browsing context created event' , async function ( ) {
684684 let contextInfo = null
685- const browsingConextInspector = await BrowsingConextInspector ( driver )
685+ const browsingConextInspector = await BrowsingContextInspector ( driver )
686686 await browsingConextInspector . onBrowsingContextCreated ( ( entry ) => {
687687 contextInfo = entry
688688 } )
@@ -697,7 +697,7 @@ suite(
697697
698698 it ( 'can listen to tab browsing context created event' , async function ( ) {
699699 let contextInfo = null
700- const browsingConextInspector = await BrowsingConextInspector ( driver )
700+ const browsingConextInspector = await BrowsingContextInspector ( driver )
701701 await browsingConextInspector . onBrowsingContextCreated ( ( entry ) => {
702702 contextInfo = entry
703703 } )
@@ -712,7 +712,7 @@ suite(
712712 } )
713713
714714 it ( 'can listen to dom content loaded event' , async function ( ) {
715- const browsingConextInspector = await BrowsingConextInspector ( driver )
715+ const browsingConextInspector = await BrowsingContextInspector ( driver )
716716 let navigationInfo = null
717717 await browsingConextInspector . onDomContentLoaded ( ( entry ) => {
718718 navigationInfo = entry
@@ -729,7 +729,7 @@ suite(
729729
730730 it ( 'can listen to browsing context loaded event' , async function ( ) {
731731 let navigationInfo = null
732- const browsingConextInspector = await BrowsingConextInspector ( driver )
732+ const browsingConextInspector = await BrowsingContextInspector ( driver )
733733
734734 await browsingConextInspector . onBrowsingContextLoaded ( ( entry ) => {
735735 navigationInfo = entry
0 commit comments