VisualSelector+BrowserSteps - When scraping elements, check for null results (#2517)

pull/2521/head
Kenny Root 4 months ago committed by GitHub
parent d23a301826
commit d7e85ffe8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -214,7 +214,7 @@ if (include_filters.length) {
console.log(e);
}
if (results.length) {
if (results != null && results.length) {
// Iterate over the results
results.forEach(node => {

Loading…
Cancel
Save