зеркало из https://github.com/mozilla/selenium.git
Allow to pass Android intent arguments to Gecko.
This commit is contained in:
Родитель
d215f629b6
Коммит
771b6ee363
|
@ -379,6 +379,19 @@ class Options {
|
||||||
this.android_.androidPackage = pkg;
|
this.android_.androidPackage = pkg;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specify additional command line arguments that should be used
|
||||||
|
* when starting the Android intent. See
|
||||||
|
* https://developer.android.com/studio/command-line/adb#IntentSpec.
|
||||||
|
*
|
||||||
|
* @param {...(string|!Array<string>)} args The arguments to include.
|
||||||
|
* @return {!Options} A self reference.
|
||||||
|
*/
|
||||||
|
androidAddIntentArguments(...args) {
|
||||||
|
this.android_.androidIntentArguments = (this.android_.androidIntentArguments || []).concat(...args);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче