1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| client .url('http://google.com') .getTitle().then(function(title) { console.log(title); }) .newWindow('http://webdriver.io', 'WebdriverIO window', 'width=420,height=230,resizable,scrollbars=yes,status=1') .getTitle().then(function(title) { console.log(title); }) .close() .getTitle().then(function(title) { console.log(title); }) .end();
|