| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 
 | it('should return all window handles', function () {browser.url('http://localhost/one.html');
 browser.newWindow('http://localhost/two.html');
 
 var windowHandles = browser.windowHandles()
 console.log(windowHandles);
 
 
 
 
 
 
 
 
 
 
 
 });
 
 |