Skip to content

Commit

Permalink
Merge pull request #86 from browserstack/AXE-231-iframe
Browse files Browse the repository at this point in the history
Iframe fix for automate
  • Loading branch information
mattscepter authored Aug 6, 2024
2 parents 5a2b2f3 + 2dbf6fb commit 182cf39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/public/run-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit 182cf39

Please sign in to comment.