SeleniumBase/examples/test_apple_site.py

36 lines
1.7 KiB
Python
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from seleniumbase import BaseCase
class AppleTests(BaseCase):
def test_apple_developer_site_webdriver_instructions(self):
if not (self.headless or self.headless2 or self.xvfb):
self.demo_mode = True
self.demo_sleep = 0.5
self.message_duration = 2.0
if self.headless:
if self._multithreaded:
print("Skipping test in headless multi-threaded mode.")
self.skip("Skipping test in headless multi-threaded mode.")
elif self.undetectable:
print("Skipping test in headless undetectable mode.")
self.skip("Skipping test in headless undetectable mode.")
elif self.browser == "chrome" or self.browser == "edge":
self.get_new_driver(browser=self.browser, headless2=True)
self.open("https://developer.apple.com/search/")
title = "Testing with WebDriver in Safari"
self.type('[placeholder*="developer.apple.com"]', title + "\n")
self.click("link=%s" % title)
self.assert_element("nav.documentation-nav")
self.assert_text(title, "h1")
self.assert_text("Enable WebDriver and run a test.", "div.abstract")
if self.demo_mode:
self.highlight("div.content h2")
else:
self.assert_element("div.content h2")
h3 = "div.content h3:nth-of-type(%s)"
self.assert_text("Make Sure You Have Safaris WebDriver", h3 % "1")
self.assert_text("Get the Correct Selenium Library", h3 % "2")
self.assert_text("Configure Safari to Enable WebDriver", h3 % "3")
self.assert_text("Write a WebDriver Testing Suite", h3 % "4")
self.assert_text("Run Your Test", h3 % "5")