Skip to content

Commit 182cf39

Browse files
authored
Merge pull request #86 from browserstack/AXE-231-iframe
Iframe fix for automate
2 parents 5a2b2f3 + 2dbf6fb commit 182cf39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core/public/run-rules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function runRules(context, options, resolve, reject) {
4343
}
4444

4545
// If run for iframes is true then collect results from iframes
46-
if (context.frames.length && options.iframes === true) {
46+
if (context.frames.length && options.iframes !== false) {
4747
q.defer((res, rej) => {
4848
collectResultsFromFrames(context, options, 'rules', null, res, rej);
4949
});

0 commit comments

Comments
 (0)