Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
chore(browser): fix typings for getCapabilities (#3742)
Browse files Browse the repository at this point in the history
closes #3741
  • Loading branch information
cnishina authored Nov 23, 2016
1 parent 70bc6ea commit 19f99d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class Webdriver {
controlFlow: () => wdpromise.ControlFlow;
executeScript: (script: string|Function, ...var_args: any[]) => wdpromise.Promise<any>;
executeAsyncScript: (script: string|Function, ...var_args: any[]) => wdpromise.Promise<any>;
getCapabilities: () => Capabilities;
getCapabilities: () => wdpromise.Promise<Capabilities>;
getCurrentUrl: () => wdpromise.Promise<string>;
getPageSource: () => wdpromise.Promise<string>;
getSession: () => wdpromise.Promise<Session>;
Expand Down

0 comments on commit 19f99d6

Please sign in to comment.