Skip to content

Commit

Permalink
UI test added
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasherceg committed Dec 17, 2023
1 parent a65ef16 commit 88d379c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions src/Samples/Tests/Tests/Feature/EmbeddedResourceControlsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,15 @@ public void Feature_EmbeddedResourceControls_EmbeddedResourceControls()
AssertUI.Attribute(browser.First("input[type=button]"), "value", "This is text");
});
}

[Fact]
public void Feature_EmbeddedResourceControls_PageWithEmbeddedResourceMasterPage()
{
RunInAllBrowsers(browser => {
browser.NavigateToUrl(SamplesRouteUrls.FeatureSamples_EmbeddedResourceControls_PageWithEmbeddedResourceMasterPage);

AssertUI.TextEquals(browser.Single("p"), "Success");
});
}
}
}

0 comments on commit 88d379c

Please sign in to comment.