Be able to call sb.cdp.METHOD_NAME(args) with just sb.METHOD_NAME(args)
This should simplify lots of scripts, as these usages are common:
sb.cdp.flash(selector) - (Highlights an element with a dot via CDP)
sb.cdp.get_endpoint_url() - (Used by Stealthy Playwright Mode)
Those would become:
sb.flash(selector)
sb.get_endpoint_url()
- etc.
These changes are expected in 4.49.2.
Lots of examples will be updated to use the simplified form.
(If you run one of the updated scripts without using that new version of SeleniumBase, then you may experience errors.)
Be able to call
sb.cdp.METHOD_NAME(args)with justsb.METHOD_NAME(args)This should simplify lots of scripts, as these usages are common:
sb.cdp.flash(selector)- (Highlights an element with a dot via CDP)sb.cdp.get_endpoint_url()- (Used by Stealthy Playwright Mode)Those would become:
sb.flash(selector)sb.get_endpoint_url()These changes are expected in
4.49.2.Lots of examples will be updated to use the simplified form.
(If you run one of the updated scripts without using that new version of SeleniumBase, then you may experience errors.)