You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sb.highlight("img#image1") # A fancier assert_element() call
842
-
sb.click('a:contains("This Page")') # Use :contains() on any tag
843
-
sb.click_link("Sign out") # Link must be "a" tag. Not "button".
844
-
sb.assert_element('a:contains("Sign in")')
845
-
sb.assert_exact_text("You have been signed out!", "#top_message")
839
+
sb.click('a:contains("Sign in")')
840
+
sb.assert_exact_text("Welcome!", "h1")
841
+
sb.assert_element("img#image1")
842
+
sb.highlight("#image1")
843
+
sb.click_link("Sign out")
844
+
sb.assert_text("signed out", "#top_message")
846
845
```
847
846
848
847
(See <ahref="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/raw_sb.py">examples/raw_sb.py</a> for the test.)
@@ -881,11 +880,11 @@ with SB(test=True, rtf=True, demo=True) as sb:
881
880
This pure Python format gives you a raw <codetranslate="no">webdriver</code> instance in a <codetranslate="no">with</code> block. The SeleniumBase Driver Manager will automatically make sure that your driver is compatible with your browser version. It gives you full access to customize driver options via method args or via the command-line. The driver will automatically call <codetranslate="no">quit()</code> after the code leaves the <codetranslate="no">with</code> block. Here are some examples:
882
881
883
882
```python
884
-
"""Can run with "python". (pytest not needed)."""
883
+
"""DriverContext() example. (Runs with "python")."""
with DriverContext(browser="chrome", incognito=True) as driver:
@@ -896,7 +895,7 @@ with DriverContext(browser="chrome", incognito=True) as driver:
896
895
driver.highlight("#output", loops=6)
897
896
898
897
with DriverContext() as driver:
899
-
driver.open("seleniumbase.github.io/demo_page")
898
+
driver.open("seleniumbase.io/demo_page")
900
899
driver.highlight("h2")
901
900
driver.type("#myTextInput", "Automation")
902
901
driver.click("#checkBox1")
@@ -911,9 +910,19 @@ with DriverContext() as driver:
911
910
Another way of running Selenium tests with pure ``python`` (as opposed to using ``pytest`` or ``pynose``) is by using this format, which bypasses [BaseCase](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) methods while still giving you a flexible driver with a manager. SeleniumBase includes helper files such as [page_actions.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/page_actions.py), which may help you get around some of the limitations of bypassing ``BaseCase``. Here's an example:
912
911
913
912
```python
914
-
"""Driver() test. Runs with "python". (pytest not needed)."""
0 commit comments