$$ method
The method runs document.querySelectorAll within the frame. If no
elements match the selector, the return value resolves to [].
Parameters:
A selector to query frame for
Returns a Future which resolves to ElementHandles pointing to the frame elements.
Implementation
Future<List<ElementHandle>> $$(String selector) {
return _mainWorld.$$(selector);
}