121 lines
4.6 KiB
Python
Executable File
121 lines
4.6 KiB
Python
Executable File
from seleniumbase import BaseCase
|
|
|
|
|
|
class DemoSiteTests(BaseCase):
|
|
def test_demo_site(self):
|
|
self.open("https://seleniumbase.io/demo_page")
|
|
|
|
# Assert the title of the current web page
|
|
self.assert_title("Web Testing Page")
|
|
|
|
# Assert that the element is visible on the page
|
|
self.assert_element("tbody#tbodyId")
|
|
|
|
# Assert that the text appears within a given element
|
|
self.assert_text("Demo Page", "h1")
|
|
|
|
# Type/update text in text fields on the page
|
|
self.type("#myTextInput", "This is Automated")
|
|
self.type("textarea.area1", "Testing Time!\n")
|
|
self.type('[name="preText2"]', "Typing Text!")
|
|
|
|
# Verify that a hover dropdown link changes page text
|
|
self.assert_text("Automation Practice", "h3")
|
|
try:
|
|
self.hover_and_click(
|
|
"#myDropdown", "#dropOption2", timeout=2)
|
|
except Exception:
|
|
# If a human moves the mouse while the test runs
|
|
self.js_click("#dropOption2")
|
|
self.assert_text("Link Two Selected", "h3")
|
|
|
|
# Verify that a button click changes text on the page
|
|
self.assert_text("This Text is Green", "#pText")
|
|
self.click("#myButton")
|
|
self.assert_text("This Text is Purple", "#pText")
|
|
|
|
# Assert that the given SVG is visible on the page
|
|
self.assert_element('svg[name="svgName"]')
|
|
|
|
# Verify that a slider control updates a progress bar
|
|
self.assert_element('progress[value="50"]')
|
|
self.press_right_arrow("#myslider", times=5)
|
|
self.assert_element('progress[value="100"]')
|
|
|
|
# Verify that a "select" option updates a meter bar
|
|
self.assert_element('meter[value="0.25"]')
|
|
self.select_option_by_text("#mySelect", "Set to 75%")
|
|
self.assert_element('meter[value="0.75"]')
|
|
|
|
# Assert an element located inside an iFrame
|
|
self.assert_false(self.is_element_visible("img"))
|
|
self.switch_to_frame("#myFrame1")
|
|
self.assert_true(self.is_element_visible("img"))
|
|
self.switch_to_default_content()
|
|
|
|
# Assert text located inside an iFrame
|
|
self.assert_false(self.is_text_visible("iFrame Text"))
|
|
self.switch_to_frame("#myFrame2")
|
|
self.assert_true(self.is_text_visible("iFrame Text"))
|
|
self.switch_to_default_content()
|
|
|
|
# Verify that clicking a radio button selects it
|
|
self.assert_false(self.is_selected("#radioButton2"))
|
|
self.click("#radioButton2")
|
|
self.assert_true(self.is_selected("#radioButton2"))
|
|
|
|
# Verify that clicking a checkbox makes it selected
|
|
self.assert_element_not_visible("img#logo")
|
|
self.assert_false(self.is_selected("#checkBox1"))
|
|
self.click("#checkBox1")
|
|
self.assert_true(self.is_selected("#checkBox1"))
|
|
self.assert_element("img#logo")
|
|
|
|
# Verify clicking on multiple elements with one call
|
|
self.assert_false(self.is_selected("#checkBox2"))
|
|
self.assert_false(self.is_selected("#checkBox3"))
|
|
self.assert_false(self.is_selected("#checkBox4"))
|
|
self.click_visible_elements("input.checkBoxClassB")
|
|
self.assert_true(self.is_selected("#checkBox2"))
|
|
self.assert_true(self.is_selected("#checkBox3"))
|
|
self.assert_true(self.is_selected("#checkBox4"))
|
|
|
|
# Verify that clicking an iFrame checkbox selects it
|
|
self.assert_false(self.is_element_visible(".fBox"))
|
|
self.switch_to_frame("#myFrame3")
|
|
self.assert_true(self.is_element_visible(".fBox"))
|
|
self.assert_false(self.is_selected(".fBox"))
|
|
self.click(".fBox")
|
|
self.assert_true(self.is_selected(".fBox"))
|
|
self.switch_to_default_content()
|
|
|
|
# Verify Drag and Drop
|
|
self.assert_element_not_visible("div#drop2 img#logo")
|
|
self.drag_and_drop("img#logo", "div#drop2")
|
|
self.assert_element("div#drop2 img#logo")
|
|
|
|
# Assert link text
|
|
self.assert_link_text("seleniumbase.com")
|
|
self.assert_link_text("SeleniumBase on GitHub")
|
|
self.assert_link_text("seleniumbase.io")
|
|
|
|
# Click link text
|
|
self.click_link("SeleniumBase Demo Page")
|
|
|
|
# Assert exact text
|
|
self.assert_exact_text("Demo Page", "h1")
|
|
|
|
# Highlight a page element (Also asserts visibility)
|
|
self.highlight("h2")
|
|
|
|
# Actions with Demo Mode enabled
|
|
self.demo_mode = True
|
|
self.type("input", "Have a Nice Day!")
|
|
self.assert_text("SeleniumBase", "h2")
|
|
|
|
# Assert no broken links (Can be slow if many links)
|
|
# self.assert_no_404_errors()
|
|
|
|
# Assert no JavaScript errors (Can also detect 404s)
|
|
# self.assert_no_js_errors()
|