-
- Notifications
You must be signed in to change notification settings - Fork 8.6k
[rust] Save to directory #11837
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
[rust] Save to directory #11837
Conversation
@bonigarcia you might want to take a look at this two PRs #11832 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might still be useful (it is at least for me) since the webdriver will be saved under a specific version folder eg |
Still, even if this gets pushed back there are a few refactors worth considering, especially using Also it might be worth considering using optionals instead of empty strings for the configurations that don't exist since rust provides really powerful tools for working with options, |
I see your point now. Still, I think having both flags |
Yes, I have just seen your PR about it and it seems a handy way to avoid the cloning method, thanks a lot. I think we should merge it, thanks.
Yes, that is a good idea too. |
I got lost a bit. What should we do with this PR? I believe it needs to be split to handle the refactor apart? |
That looks like the correct approach |
I guess so. I don't know how to select only some of the changes from each commit, I'm very good with git. I could use some help with this :) |
You can create a complete new branch from |
Allows the user to download the webdriver to a specific directory.
Description
Adds the
--save-path
flag, which allows the user to download the selected driver to a folder.Also a few refactors that I didn't see in the other PR
Motivation and Context
I had the need for this so I implemented it here.
Types of changes
Checklist