Skip to content

[Documentation] Custom selector engines before page is created #2750

Open
@Exoow

Description

@Exoow

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!
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions