-
I couldn't use the old version of chrome-driver until I restricted the rights to this file. Is a more conservative method implemented? I need support for Yandex Browser, which often uses an older version of chrome, and when running tests, seleniumbase tries to update the version to the latest. And I can't use the original name yandex-driver.exe, because you have a lot of binding to the name in the code |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can use Syntax Format 9 (or 10) from https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md#sb_sf_09, which gives you total control with how you spin up your web browsers. This is especially useful when you want to use a browser that isn't officially supported. In some situations, you might want to change the Chromium browser binary location (when using the other syntax formats), and you can do that with: |
Beta Was this translation helpful? Give feedback.
You can use Syntax Format 9 (or 10) from https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md#sb_sf_09, which gives you total control with how you spin up your web browsers. This is especially useful when you want to use a browser that isn't officially supported.
In some situations, you might want to change the Chromium browser binary location (when using the other syntax formats), and you can do that with:
pytest --binary-location=PATH
.