Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs]: Update the usage for Page assertions method - ToHaveTitle and ToHaveURL #2994

Closed
Honyii opened this issue Sep 4, 2024 · 0 comments · Fixed by microsoft/playwright#32484

Comments

@Honyii
Copy link

Honyii commented Sep 4, 2024

Page(s)

page_assertions

Description

The documentation methods for ToHaveTitle and ToHaveURL in page assertions is incomplete. This is the code snippet for what we have now;
await Expect(Page).ToHaveTitle("Playwright");
await Expect(Page).ToHaveURL(new Regex(".*checkout"));

It should be updated to;
await Expect(Page).ToHaveTitleAsync("Playwright");
await Expect(Page).ToHaveURLAsync(new Regex(".*checkout"));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant