@@ -27,6 +27,7 @@ namespace OpenQA.Selenium.BiDi.WebExtension;
2727class WebExtensionTest : BiDiTestFixture
2828{
2929 [ Test ]
30+ [ Ignore ( "qwe" ) ]
3031 [ IgnoreBrowser ( Selenium . Browser . Chrome , "Web extensions are not supported yet?" ) ]
3132 [ IgnoreBrowser ( Selenium . Browser . Edge , "Web extensions are not supported yet?" ) ]
3233 public async Task CanInstallPathWebExtension ( )
@@ -43,14 +44,16 @@ public async Task CanInstallPathWebExtension()
4344 [ IgnoreBrowser ( Selenium . Browser . Edge , "Web extensions are not supported yet?" ) ]
4445 public async Task CanInstallArchiveWebExtension ( )
4546 {
46- string path = Path . GetFullPath ( "data/extensions/webextensions-selenium-example.zip" ) ;
47+ //string path = Path.GetFullPath("data/extensions/webextensions-selenium-example.zip");
48+ string path = Bazel . Runfiles . Create ( ) . Rlocation ( "_main/common/extensions/webextensions-selenium-example.zip" ) ;
4749
4850 var result = await bidi . WebExtension . InstallAsync ( new ExtensionArchivePath ( path ) ) ;
4951
5052 Assert . That ( result , Is . Not . Null ) ;
5153 }
5254
5355 [ Test ]
56+ [ Ignore ( "qwe" ) ]
5457 [ IgnoreBrowser ( Selenium . Browser . Chrome , "Web extensions are not supported yet?" ) ]
5558 [ IgnoreBrowser ( Selenium . Browser . Edge , "Web extensions are not supported yet?" ) ]
5659 public async Task CanInstallBase64WebExtension ( )
@@ -63,6 +66,7 @@ public async Task CanInstallBase64WebExtension()
6366 }
6467
6568 [ Test ]
69+ [ Ignore ( "qwe" ) ]
6670 [ IgnoreBrowser ( Selenium . Browser . Chrome , "Web extensions are not supported yet?" ) ]
6771 [ IgnoreBrowser ( Selenium . Browser . Edge , "Web extensions are not supported yet?" ) ]
6872 public async Task CanUninstallExtension ( )
0 commit comments