Created
April 5, 2019 00:59
-
-
Save kaeton/9dc5b2c7e36074a2650310d76f2084e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A simple selenium test example written by python | |
""" | |
import unittest | |
from selenium import webdriver | |
from selenium.common.exceptions import NoSuchElementException | |
class TestTemplate(unittest.TestCase): | |
"""Include test cases on a given url""" | |
def setUp(self): | |
"""Start web driver""" | |
chrome_options = webdriver.ChromeOptions() | |
chrome_options.add_argument('--no-sandbox') | |
chrome_options.add_argument('--headless') | |
chrome_options.add_argument('--disable-gpu') | |
self.driver = webdriver.Chrome(chrome_options=chrome_options) | |
self.driver.implicitly_wait(10) | |
def tearDown(self): | |
"""Stop web driver""" | |
self.driver.quit() | |
def test_case_1(self): | |
"""Find and click top-right button""" | |
try: | |
self.driver.get('https://www.oursky.com/') | |
el = self.driver.find_element_by_class_name('btn-header') | |
el.click() | |
except NoSuchElementException as ex: | |
self.fail(ex.msg) | |
def test_case_2(self): | |
"""Find and click Learn more button""" | |
try: | |
self.driver.get('https://www.oursky.com/') | |
el = self.driver.find_element_by_xpath(".//*[@id='tag-line-wrap']/span/a") | |
el.click() | |
except NoSuchElementException as ex: | |
self.fail(ex.msg) | |
if __name__ == '__main__': | |
suite = unittest.TestLoader().loadTestsFromTestCase(TestTemplate) | |
unittest.TextTestRunner(verbosity=2).run(suite) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment