-
Hello. This is a fantastic project and I am transitioning over to it from undetected chromedriver for my own project. The only part I'm having trouble with is that I don't see an option that is similar to undetected chromedriver's I've searched similar issues and discussions, but I only found the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jdholtz, Thank you. SeleniumBase has it's own location for downloading drivers. Drivers are downloaded to the If using regular (non-UC) mode, then seleniumbase will first check the PATH for a matching driver before downloading one to the If you want the driver version to be different from the browser version, seleniumbase allows for a mismatched pairing, and you can specify the driver version to use with |
Beta Was this translation helpful? Give feedback.
Hi @jdholtz, Thank you. SeleniumBase has it's own location for downloading drivers. Drivers are downloaded to the
seleniumbase/drivers/
folder, which is based on where seleniumbase was installed. Therefore, specifying the driver location is not necessary.If using regular (non-UC) mode, then seleniumbase will first check the PATH for a matching driver before downloading one to the
seleniumbase/drivers/
folder.If you want the driver version to be different from the browser version, seleniumbase allows for a mismatched pairing, and you can specify the driver version to use with
--driver-version=VERSION
. (The new options were added recently in https://github.com/seleniumbase/SeleniumBase/re…