SeleniumBase/examples/test_apple_site.py

25 lines
1023 B
Python
Raw Normal View History

2020-05-25 16:25:47 +08:00
# -*- 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/")
2020-04-25 22:49:51 +08:00
title = "Testing with WebDriver in Safari"
2020-06-14 13:17:02 +08:00
self.type('[placeholder*="developer.apple.com"]', title + "\n")
2020-04-25 22:49:51 +08:00
self.click("link=%s" % title)
self.assert_element('[href="/documentation"]')
2020-04-25 22:49:51 +08:00
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")