Closed
Description
Simplify CDP Mode imports when using the pure CDP formats
Currently, some examples are using this:
from seleniumbase.core import sb_cdp
from seleniumbase.undetected import cdp_driver
By editing an __init__.py
file, that can be simplified to this:
from seleniumbase import sb_cdp
from seleniumbase import cdp_driver
That's easier to remember, and looks cleaner too.