* Specify additional command line arguments that should be used when starting * the Firefox browser. * * @param {...(string|!Array )} args The arguments to include. * @return {!Options} A self reference.
(...args)
| 285 | * @return {!Options} A self reference. |
| 286 | */ |
| 287 | addArguments(...args) { |
| 288 | if (args.length) { |
| 289 | let options = this.firefoxOptions_() |
| 290 | options.args = options.args ? options.args.concat(...args) : args |
| 291 | } |
| 292 | return this |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * Sets the initial window size |
no test coverage detected