SeleniumBase
SeleniumBase copied to clipboard
Adding type hints to SB context manager
Related to #3167 and #3402.
This will have the same effect as:
from seleniumbase import SB, BaseCase
sb: BaseCase
with SB(...) as sb:
...
without having to explicitly type sb: BaseCase, enabling IntelliSense in editors.
Before:
After: