from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
driver.close()
Posted by: Guest
on June-11-2021
2
selenium python example
import unittest
from selenium import webdriver
import time
classTestThree(unittest.TestCase):
defsetUp(self):
self.startTime = time.time()
deftest_url_fire(self):
time.sleep(2)
self.driver = webdriver.Firefox()
self.driver.get("https://app.simplegoods.co/i/IQCZADOY") # url associated with button click
button =self.driver.find_element_by_id("payment-submit").get_attribute("value")
self.assertEquals(u'Pay -$60.00', button)
deftest_url_phantom(self):
time.sleep(1)
self.driver = webdriver.PhantomJS()
self.driver.get("https://app.simplegoods.co/i/IQCZADOY") # url associated with button click
button =self.driver.find_element_by_id("payment-submit").get_attribute("value")
self.assertEquals(u'Pay -$60.00', button)
deftearDown(self):
t = time.time() -self.startTime
print("%s: %.3f" % (self.id(), t))
self.driver.quit()
if __name__ =='__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(TestThree)
unittest.TextTestRunner(verbosity=0).run(suite)
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email