Get the current page title.

Parameters

Name Type description
callback function

Callback function which is called with the result value.

Usage

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

W3C WebDriver spec: