add getProcessedConfig to IBrowser typing

https://angular.github.io/protractor/#/api?view=Protractor.prototype.getProcessedConfig
This commit is contained in:
David Sulc
2015-12-28 14:35:04 +01:00
parent dc9dabe74a
commit 64b25f63f0
+10
View File
@@ -1806,6 +1806,16 @@ declare module protractor {
* @return {Protractor} a protractor instance.
*/
forkNewDriverInstance(opt_useSameUrl?: boolean, opt_copyMockModules?: boolean): Protractor;
/**
* Get the processed configuration object that is currently being run. This will contain
* the specs and capabilities properties of the current runner instance.
*
* Set by the runner.
*
* @return {webdriver.promise.Promise<any>} A promise which resolves to the capabilities object.
*/
getProcessedConfig(): webdriver.promise.Promise<any>;
}
/**