We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Windows users may experience performance degradation if colorama.init(autoreset=True) gets called multiple times.
colorama.init(autoreset=True)
To get around this, SeleniumBase should instead call colorama.just_fix_windows_console() (Added in tartley/colorama#352).
colorama.just_fix_windows_console()
colorama.init(autoreset=True) is currently used in multiple places in SeleniumBase. (This is OK for macOS and Linux users!)
This refactoring will prevent issues, such as #2163
The text was updated successfully, but these errors were encountered:
driver
This was resolved in 4.19.2 - https://github.com/seleniumbase/SeleniumBase/releases/tag/v4.19.2
4.19.2
Sorry, something went wrong.
mdmintz
Successfully merging a pull request may close this issue.
Colorama refactoring for Windows users
Windows users may experience performance degradation if
colorama.init(autoreset=True)
gets called multiple times.To get around this, SeleniumBase should instead call
colorama.just_fix_windows_console()
(Added in tartley/colorama#352).colorama.init(autoreset=True)
is currently used in multiple places in SeleniumBase. (This is OK for macOS and Linux users!)This refactoring will prevent issues, such as #2163
The text was updated successfully, but these errors were encountered: