-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Passing Command Line Arguments To Driver #198
Comments
For now, I found only 2 options to enable full support of all driver arguments.
The difficulty in this approach is though, that the builders of the
The wrapper-builder from above can then be used to pass arguments to the driver constructor:
and then use this script as executable. IMO, the code approach is the more preferred one, as this guarantees platform independence. However, if this approach seems to be "hacky" and hard to maintain, we can select the script approach, as it seems to require lower maintenance effort. |
All the currently supported webdrivers accept their own list of arguments, which allow to customize the behavior of the driver itself. It might be useful e.g. to decrease the logging level of the driver.
From the list of avaliable option for chromedriver:
and from geckodriver:
we can see some further use cases of these arguments.
Therefore, it would be nice to help the users passing the arguments to the executable file.
The text was updated successfully, but these errors were encountered: