Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@page "/"

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

Welcome to your new app.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private static void NavigateToOrigin<TServerFixture>(ServerTestBase<TServerFixtu
{
// Navigate to the test origin to ensure the browser is on the correct state to access sessionStorage
fixture.Navigate($"{fixture.ServerPathBase}/");
fixture.Browser.Exists(By.Id("session-storage-anchor"));
fixture.Browser.Exists(By.Id("session-storage-marker"));
}

public static long GetScrollY(this IWebDriver browser)
Expand Down
2 changes: 1 addition & 1 deletion src/Components/test/testassets/BasicTestApp/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@using System.Web
@inject NavigationManager NavigationManager

<p id="session-storage-anchor"></p>
<p id="session-storage-marker"></p>
<div id="test-selector">
Select test:
<select id="test-selector-select" @bind=SelectedComponentTypeName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

<PageTitle>Home</PageTitle>

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

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