Skip to content

Commit be282a9

Browse files
committed
Update example tests
1 parent 292f443 commit be282a9

14 files changed

+23
-13
lines changed

examples/test_calculator.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Test the SeleniumBase Calculator App with SeleniumBase."""
12
from seleniumbase import BaseCase
23

34

examples/test_canvas.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase methods to interact with "canvas" elements."""
12
from seleniumbase import BaseCase
23

34

examples/test_coffee_cart.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase to test a Coffee Cart App."""
12
from seleniumbase import BaseCase
23

34

examples/test_console_logging.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase methods to interact with console logs."""
12
from seleniumbase import BaseCase
23

34

examples/test_contains_selector.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
""" TAG:contains("TEXT") is a special, non-standard CSS Selector
2-
that gets converted to XPath: '//TAG[contains(., "TEXT")]'
3-
before it's used by Selenium calls. Also part of jQuery. """
1+
"""
2+
TAG:contains("TEXT") is a special, non-standard CSS Selector
3+
that gets converted to XPath: '//TAG[contains(., "TEXT")]'
4+
before it's used by Selenium calls. Also part of jQuery.
5+
"""
46
from seleniumbase import BaseCase
57

68

examples/test_cycle_elements.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33

44
class CycleTests(BaseCase):
55
def test_cycle_elements_with_tab_and_press_enter(self):
6-
""" Test pressing the tab key to cycle through elements.
7-
Then click on the active element and verify actions.
8-
This can all be performed by using a single command.
9-
The "\t" is the tab key. The "\n" is the RETURN key. """
6+
"""
7+
Test pressing the tab key to cycle through elements.
8+
Then click on the active element and verify actions.
9+
This can all be performed by using a single command.
10+
The "\t" is the tab key. The "\n" is the RETURN key.
11+
"""
1012
self.open("seleniumbase.io/demo_page")
1113
self.assert_text("This Text is Green", "#pText")
1214
self.send_keys("html", "\t\t\t\t\n")

examples/test_double_click.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Test double_click() after switching into iframes."""
12
from seleniumbase import BaseCase
23

34

examples/test_download_files.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase to download files and verify."""
12
import math
23
from seleniumbase import BaseCase
34

examples/test_download_images.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase to download images and verify."""
12
import os
23
from seleniumbase import BaseCase
34

examples/test_drag_and_drop.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
"""
2-
Testing Drag & Drop on different pages.
3-
"""
1+
"""Test drag_and_drop() on different pages."""
42
from seleniumbase import BaseCase
53

64

examples/test_iframes.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Use SeleniumBase methods to interact with iframes."""
12
from seleniumbase import BaseCase
23

34

examples/test_login.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""A SeleniumBase test for verifying Login functionality on Swag Labs."""
12
from seleniumbase import BaseCase
23

34

examples/wordle_test.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
""" Solve the Wordle game using SeleniumBase.
2-
The latest version of Wordle no longer uses Shadow-DOM. """
3-
1+
"""Solve Wordle with SeleniumBase. (No longer uses Shadow-DOM)"""
42
import ast
53
import random
64
import requests

examples/xpath_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Test that SeleniumBase can autodetect and use xpath selectors."""
12
from seleniumbase import BaseCase
23

34

0 commit comments

Comments
 (0)