File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
dotnet/test/common/BiDi/WebExtension Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 18
18
// </copyright>
19
19
20
20
using NUnit . Framework ;
21
- using System ;
22
21
using System . IO ;
23
22
using System . Threading . Tasks ;
24
23
25
24
namespace OpenQA . Selenium . BiDi . WebExtension ;
26
25
27
- [ Ignore ( """
28
- The following test suite wants to set driver arguments via Options, but it breaks CDP/DevTools tests.
29
- The desired arguments (for Chromium only?):
30
- --enable-unsafe-extension-debugging
31
- --remote-debugging-pipe
32
- Ignoring these tests for now. Hopefully https://github.com/SeleniumHQ/selenium/issues/15536 will be resolved soon.
33
- """ ) ]
26
+ [ IgnoreBrowser ( Selenium . Browser . Chrome , ChromiumIgnoreReason ) ]
27
+ [ IgnoreBrowser ( Selenium . Browser . Edge , ChromiumIgnoreReason ) ]
34
28
class WebExtensionTest : BiDiTestFixture
35
29
{
30
+ const string ChromiumIgnoreReason = """
31
+ The following test suite wants to set driver arguments via Options, but it breaks CDP/DevTools tests.
32
+ The desired arguments (for Chromium only?):
33
+ --enable-unsafe-extension-debugging
34
+ --remote-debugging-pipe
35
+ Ignoring these tests for now. Hopefully https://github.com/SeleniumHQ/selenium/issues/15536 will be resolved soon.
36
+ """ ;
37
+
36
38
[ Test ]
37
39
public async Task CanInstallPathWebExtension ( )
38
40
{
You can’t perform that action at this time.
0 commit comments