(matcher, locator)
| 4236 | } |
| 4237 | |
| 4238 | async function findElement(matcher, locator) { |
| 4239 | if (locator.pw) return findByPlaywrightLocator.call(this, matcher, locator) |
| 4240 | |
| 4241 | locator = new Locator(locator, 'css') |
| 4242 | |
| 4243 | return matcher.locator(buildLocatorString(locator)).first() |
| 4244 | } |
| 4245 | |
| 4246 | async function getVisibleElements(elements) { |
| 4247 | const visibleElements = [] |
nothing calls this directly
no test coverage detected