-
Notifications
You must be signed in to change notification settings - Fork 1.4k
-
because --uc !!
BaseCase.main(name, file ,"--uc" ,"-s" ,)
class OverrideDriverTest(BaseCase):
def test_driver_override(self):
self.maximize_window()
self.open("https://seleniumbase.io/demo_page")
self.type("#myTextInput", "This is Automated")
self.set_value("input#mySlider", "100")
self.select_option_by_text("#mySelect", "Set to 100%")
self.click("#checkBox1")
self.drag_and_drop("img#logo", "div#drop2")
self.click('button:contains("Click Me")')
thanks
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
See the example with custom setUp()
and tearDown()
:
SeleniumBase/examples/boilerplates/base_test_case.py
Beta Was this translation helpful? Give feedback.
All reactions
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment