I am trying to wait for an element that indicates a page is still loading, and exists on the page multiple time, to not be visible (think table with loading data placeholders).
Playwright documentation suggests using Locators is best practice, and therefore I initially tried to achieve this by doing:
locator.waitFor({state: "hidden")
However that errors due to Locators being strict and only being allow to match one element.
I'm now doing it with the following code:
page.waitForSelector(".foo .bar", {state: "hidden"})
This is non-ideal for a couple of reasons:
- I'm storing page elements as locators in the Page Object Model, and you seemingly cannot access the selector of a locator, meaning the selector is duplicated in the code
- I believe page.waitForSelector will use an ElementHandle which is discouraged
Is there any way to turn off the strictness constraint on a Locator? Or a way to achieve this using the Locator. I'm aware you can do .count
on a Locator which matches multiple elements, but I've not found a nice way to combine that with waiting for the count to be 0.