14 lines
564 B
Python
14 lines
564 B
Python
"""Test that SeleniumBase can autodetect and use xpath selectors."""
|
|
from seleniumbase import BaseCase
|
|
BaseCase.main(__name__, __file__)
|
|
|
|
|
|
class XPathTests(BaseCase):
|
|
def test_xpath(self):
|
|
self.open("https://seleniumbase.io/demo_page")
|
|
self.assert_element('//h1[(text()="Demo Page")]')
|
|
self.type('//*[@id="myTextInput"]', "XPath Test!")
|
|
self.click('//button[starts-with(text(),"Click Me")]')
|
|
self.assert_element('//button[contains(., "Purple")]')
|
|
self.assert_text("SeleniumBase", "//table/tbody/tr[1]/td[2]/h2")
|