Skip to content

Commit c821481

Browse files
authored
Follow up for "Run entire E2E test with consistent enhanced navigation suppression setting" (#63526)
1 parent fed42ad commit c821481

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/"
22

3-
<h1 id="session-storage-anchor">Hello, world!</h1>
3+
<h1 id="session-storage-marker">Hello, world!</h1>
44

55
Welcome to your new app.

src/Components/test/E2ETest/ServerRenderingTests/EnhancedNavigationTestUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static void NavigateToOrigin<TServerFixture>(ServerTestBase<TServerFixtu
8989
{
9090
// Navigate to the test origin to ensure the browser is on the correct state to access sessionStorage
9191
fixture.Navigate($"{fixture.ServerPathBase}/");
92-
fixture.Browser.Exists(By.Id("session-storage-anchor"));
92+
fixture.Browser.Exists(By.Id("session-storage-marker"));
9393
}
9494

9595
public static long GetScrollY(this IWebDriver browser)

src/Components/test/testassets/BasicTestApp/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@using System.Web
33
@inject NavigationManager NavigationManager
44

5-
<p id="session-storage-anchor"></p>
5+
<p id="session-storage-marker"></p>
66
<div id="test-selector">
77
Select test:
88
<select id="test-selector-select" @bind=SelectedComponentTypeName>

src/Components/test/testassets/Components.TestServer/RazorComponents/Pages/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
<PageTitle>Home</PageTitle>
44

5-
<h1 id="session-storage-anchor">Hello</h1>
5+
<h1 id="session-storage-marker">Hello</h1>
66

77
<p>This is a Razor Component endpoint.</p>

0 commit comments

Comments
 (0)