From 2dbf6fbdbe5e74bff7c121200a106d0f5dd87f21 Mon Sep 17 00:00:00 2001 From: Utkarsh Chaudhary Date: Tue, 6 Aug 2024 16:02:46 +0530 Subject: [PATCH] Iframe fix for automate --- lib/core/public/run-rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/public/run-rules.js b/lib/core/public/run-rules.js index 7ae0b92b..8e04c13d 100644 --- a/lib/core/public/run-rules.js +++ b/lib/core/public/run-rules.js @@ -43,7 +43,7 @@ export default function runRules(context, options, resolve, reject) { } // If run for iframes is true then collect results from iframes - if (context.frames.length && options.iframes === true) { + if (context.frames.length && options.iframes !== false) { q.defer((res, rej) => { collectResultsFromFrames(context, options, 'rules', null, res, rej); });