SeleniumBase/examples/test_apple_site.py

25 lines
1023 B
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.

# -*- coding: utf-8 -*-
from seleniumbase import BaseCase
class AppleTestClass(BaseCase):
def test_apple_developer_site_webdriver_instructions(self):
self.demo_mode = True
self.demo_sleep = 0.5
self.message_duration = 2.0
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('[href="/documentation"]')
self.assert_text(title, "h1")
self.highlight("div.topic-description p")
self.highlight("h2")
h3 = "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")