Closed
Description
Hi, newbie to Seleniumbase framework and searched the web with no luck so I'd like to request how to use custom chrome options through the .add_experimental_option("') method similar to the affect of:
from selenium.webdriver import ChromeOptions, Chrome
opts = ChromeOptions()
opts.add_experimental_option("detach", True)
driver = Chrome(chrome_options=opts)
So that the web browser tab that opens through the Seleniumbase framework on python stays open.