We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5cf6e commit dcaf6bbCopy full SHA for dcaf6bb
lib/PuppeteerSharp.Tests/Page/EvaluateHandleTests.cs
@@ -0,0 +1,16 @@
1
+using System.Threading.Tasks;
2
+using Xunit;
3
+
4
+namespace PuppeteerSharp.Tests.Page
5
+{
6
+ [Collection("PuppeteerLoaderFixture collection")]
7
+ public class EvaluateHandleTests : PuppeteerPageBaseTest
8
+ {
9
+ [Fact]
10
+ public async Task ShouldWork()
11
12
+ var windowHandle = await Page.EvaluateExpressionHandleAsync("window");
13
+ Assert.NotNull(windowHandle);
14
+ }
15
16
+}
0 commit comments