Skip to content

Commit

Permalink
Fix is hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok committed Nov 17, 2023
1 parent 1ee2d78 commit 717237f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PuppeteerSharp/ElementHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ public async Task ScrollIntoViewIfNeededAsync()
public Task<bool> IsVisibleAsync() => BindIsolatedHandleAsync(handle => CheckVisibilityAsync(handle, true));

/// <inheritdoc/>
public Task<bool> IsHiddenAsync() => BindIsolatedHandleAsync(handle => CheckVisibilityAsync(handle, true));
public Task<bool> IsHiddenAsync() => BindIsolatedHandleAsync(handle => CheckVisibilityAsync(handle, false));

/// <inheritdoc/>
public override Task<IJSHandle> GetPropertyAsync(string propertyName)
Expand Down

0 comments on commit 717237f

Please sign in to comment.