class Playwright::Page

def eval_on_selector_all(selector, expression, arg: nil)

```
div_counts = page.eval_on_selector_all("div", "(divs, min) => divs.length >= min", 10)
```python sync

**Usage**

return its value.
If `expression` returns a [Promise], then [`method: Page.evalOnSelectorAll`] would wait for the promise to resolve and

a first argument to `expression`. Returns the result of `expression` invocation.
The method finds all elements matching the specified selector within the page and passes an array of matched elements as
def eval_on_selector_all(selector, expression, arg: nil)
  wrap_impl(@impl.eval_on_selector_all(unwrap_impl(selector), unwrap_impl(expression), arg: unwrap_impl(arg)))
end