bdd.it('should return false if the iframe is not visible', function() {
        var element = frame.document.getElementById('target');
        frame.element.style.display = 'none';
        expect(isVisible(element)).to.equal(false);
      });