Skip to content

Instantly share code, notes, and snippets.

@Phrancis
Created September 6, 2015 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Phrancis/97ea571620dc062ce045 to your computer and use it in GitHub Desktop.
Save Phrancis/97ea571620dc062ce045 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re
class WikimediaUseThisFile(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Firefox()
self.driver.implicitly_wait(30)
self.base_url = "https://commons.wikimedia.org/"
self.verificationErrors = []
self.accept_next_alert = True
def test_wikimedia_use_this_file(self):
driver = self.driver
driver.get(self.base_url + "/wiki/File:Maitreya_Buddha%2C_Nubra.jpg")
driver.find_element_by_css_selector("a[title=\"Use this file on the web\"] > b").click()
driver.find_element_by_id("stockphoto_attribution_html").click()
driver.find_element_by_id("stockphoto_attribution").click()
def is_element_present(self, how, what):
try: self.driver.find_element(by=how, value=what)
except NoSuchElementException, e: return False
return True
def is_alert_present(self):
try: self.driver.switch_to_alert()
except NoAlertPresentException, e: return False
return True
def close_alert_and_get_its_text(self):
try:
alert = self.driver.switch_to_alert()
alert_text = alert.text
if self.accept_next_alert:
alert.accept()
else:
alert.dismiss()
return alert_text
finally: self.accept_next_alert = True
def tearDown(self):
self.driver.quit()
self.assertEqual([], self.verificationErrors)
if __name__ == "__main__":
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment