-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Improve WebDriver Management When Running from Executable #3615
Comments
Duplicate of #2046.
If you can't change from seleniumbase.config import settings
settings.HIDE_DRIVER_DOWNLOADS = True
|
The core issue is not about additional console messages appearing, but rather that in certain use cases, such as with PyInstaller, the library downloads the driver each time, which is problematic. The default driver storage location in the source code may also seem like an unusual solution to some users. It would be great to have the ability to specify the driver directory path out of the box in SeleniumBase, as this would solve some deployment scenarios. Nevertheless, I understand your position and thank you for your detailed response. |
What about if you specify the driver version, and it downloads the driver and patches it? Then make exe with it. Do we need to define the path of the driver? |
In the current implementation, the driver is still downloaded to .../site-packages/seleniumbase/drivers/, overwriting the existing file if it already exists. As far as I can see (and as I mentioned earlier), there is no built-in option to change the directory path where drivers are stored. |
For example, move the definition of the |
Improve WebDriver Management When Running from Executable
Issue Description
When SeleniumBase scripts are packaged into an executable file (using PyInstaller or similar tools), webdrivers are downloaded and stored in a temporary directory that is created and deleted on each execution of the executable file. This is inefficient and causes unnecessary downloads, on Windows systems.
Current Behavior
Proposed Solution
Modify SeleniumBase to detect if it's running from an executable file and adjust the
DRIVER_DIR
accordingly:sys.frozen
attribute): Save drivers in a persistent "drivers" folder alongside the executable fileI can create a PR if your are insterested in.
The text was updated successfully, but these errors were encountered: