Skip to content

Commit

Permalink
[dotnet] Stabilize VerifySearchInResponseBody devtools test
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Oct 6, 2024
1 parent 5ec6408 commit 97cf9a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/test/common/DevTools/DevToolsNetworkTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ await domains.Network.Enable(new CurrentCdpVersion.Network.EnableCommandSettings
}

[Test]
[IgnorePlatform("Windows", "Not working properly")]
[IgnoreBrowser(Selenium.Browser.IE, "IE does not support Chrome DevTools Protocol")]
[IgnoreBrowser(Selenium.Browser.Firefox, "Firefox does not support Chrome DevTools Protocol")]
[IgnoreBrowser(Selenium.Browser.Safari, "Safari does not support Chrome DevTools Protocol")]
Expand Down Expand Up @@ -232,7 +231,8 @@ await domains.Network.Enable(new CurrentCdpVersion.Network.EnableCommandSettings
var searchResponse = await domains.Network.SearchInResponseBody(new CurrentCdpVersion.Network.SearchInResponseBodyCommandSettings()
{
RequestId = requestIds[0],
Query = "/",
Query = ".*",
IsRegex = true
});

Assert.That(searchResponse.Result.Length > 0);
Expand Down

0 comments on commit 97cf9a1

Please sign in to comment.