docs: text nits (2)

This commit is contained in:
Pavel Feldman 2021-05-26 16:27:42 -07:00
parent 9233a61bda
commit 250c51fd9f
2 changed files with 2 additions and 2 deletions

View File

@ -1428,7 +1428,7 @@ with frame.expect_navigation():
await frame.RunAndWaitForNavigationAsync(async () =>
{
// Clicking the link will indirectly cause a navigation.
await frame.ClickAsync("a.delayed-navigation"));
await frame.ClickAsync("a.delayed-navigation");
});
// Resolves after navigation has finished

View File

@ -3276,7 +3276,7 @@ with page.expect_navigation():
await page.RunAndWaitForNavigationAsync(async () =>
{
// Clicking the link will indirectly cause a navigation.
await page.ClickAsync("a.delayed-navigation"));
await page.ClickAsync("a.delayed-navigation");
});
// The method continues after navigation has finished