Open
Description
The documentation (both in code and https://playwright.dev/dotnet/docs/extensibility) states:
Selectors must be registered before creating the page.
However the code below works, in a TestClass
inheriting from PageTest
.
Isn't the page already created when entering this method, given that actions are performed on it?
[TestInitialize]
public async Task InitializeTest()
{
await RegisterCustomSelectors(); // register here
await Page.GotoAsync("/");
await Page.Locator("myengine=test").FillAsync("hi"); // this works!
}