diff --git a/docs/src/api/class-locatorassertions.md b/docs/src/api/class-locatorassertions.md index 369dd995e0..c252b1348b 100644 --- a/docs/src/api/class-locatorassertions.md +++ b/docs/src/api/class-locatorassertions.md @@ -701,7 +701,7 @@ expect(locator).to_be_enabled() ```csharp var locator = Page.Locator("button.submit"); -await Expect(locator).toBeEnabledAsync(); +await Expect(locator).ToBeEnabledAsync(); ``` ### option: LocatorAssertions.toBeEnabled.enabled @@ -1181,7 +1181,7 @@ expect(locator).to_have_accessible_description("Save results to disk") ```csharp var locator = Page.GetByTestId("save-button"); -await Expect(locator).toHaveAccessibleDescriptionAsync("Save results to disk"); +await Expect(locator).ToHaveAccessibleDescriptionAsync("Save results to disk"); ``` ### param: LocatorAssertions.toHaveAccessibleDescription.description @@ -1231,7 +1231,7 @@ expect(locator).to_have_accessible_name("Save to disk") ```csharp var locator = Page.GetByTestId("save-button"); -await Expect(locator).toHaveAccessibleNameAsync("Save to disk"); +await Expect(locator).ToHaveAccessibleNameAsync("Save to disk"); ``` ### param: LocatorAssertions.toHaveAccessibleName.name diff --git a/docs/src/clock.md b/docs/src/clock.md index ea14941d82..2f846e4fd3 100644 --- a/docs/src/clock.md +++ b/docs/src/clock.md @@ -164,11 +164,11 @@ await Page.GotoAsync("http://localhost:3333"); await Page.Clock.PauseAtAsync(new DateTime(2024, 2, 2, 10, 0, 0)); // Assert the page state. -await Expect(Page.GetByTestId("current-time")).ToHaveText("2/2/2024, 10:00:00 AM"); +await Expect(Page.GetByTestId("current-time")).ToHaveTextAsync("2/2/2024, 10:00:00 AM"); // Close the laptop lid again and open it at 10:30am. await Page.Clock.FastForwardAsync("30:00"); -await Expect(Page.GetByTestId("current-time")).ToHaveText("2/2/2024, 10:30:00 AM"); +await Expect(Page.GetByTestId("current-time")).ToHaveTextAsync("2/2/2024, 10:30:00 AM"); ``` ## Test inactivity monitoring diff --git a/docs/src/release-notes-csharp.md b/docs/src/release-notes-csharp.md index 130b9d4a71..c39e454ebc 100644 --- a/docs/src/release-notes-csharp.md +++ b/docs/src/release-notes-csharp.md @@ -788,7 +788,7 @@ All the same methods are also available on [Locator], [FrameLocator] and [Frame] - [`method: LocatorAssertions.toHaveAttribute`] with an empty value does not match missing attribute anymore. For example, the following snippet will succeed when `button` **does not** have a `disabled` attribute. ```csharp - await Expect(Page.GetByRole(AriaRole.Button)).ToHaveAttribute("disabled", ""); + await Expect(Page.GetByRole(AriaRole.Button)).ToHaveAttributeAsync("disabled", ""); ``` ### Browser Versions