validateDocument method
Validates that this selector can find elements in the given document
Implementation
bool validateDocument(Document document) {
final results = extractFromDocument(document);
return results.isNotEmpty;
}
Validates that this selector can find elements in the given document
bool validateDocument(Document document) {
final results = extractFromDocument(document);
return results.isNotEmpty;
}