| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 
 | it('should detect if elements are existing', function () {var isExisting;
 isExisting = browser.isExisting('#someRandomNonExistingElement');
 console.log(isExisting);
 
 isExisting = browser.isExisting('#notDisplayed');
 console.log(isExisting);
 
 isExisting = browser.isExisting('#notVisible');
 console.log(isExisting);
 
 isExisting = browser.isExisting('#notInViewport');
 console.log(isExisting);
 
 isExisting = browser.isExisting('#zeroOpacity');
 console.log(isExisting);
 });
 
 |