All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dom-snapshot.node_modules.@applitools.dom-shared.src.browser.isAccessibleFrame.js Maven / Gradle / Ivy

'use strict';

function isAccessibleFrame(frame) {
  try {
    const doc = frame.contentDocument;
    return Boolean(doc && doc.defaultView && doc.defaultView.frameElement);
  } catch (err) {
    return false;
  }
}

module.exports = isAccessibleFrame;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy