Retrieve the current window handle.

Usage

Parameters

Name Type description
callback function

Callback function which is called with the result value.

Example

 this.demoTest = function (browser) {
   browser.windowHandle(function(result) {
     console.log(result.value);
   });
}

W3C WebDriver spec