testing the web with selenium

16
Automating the Web with Selenium Mark Sun Software Engineer

Upload: mark-sun

Post on 18-Jan-2017

133 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Testing the Web with Selenium

Automating the Web with Selenium

Mark SunSoftware Engineer

Page 2: Testing the Web with Selenium

Agenda•Vision•Why•What •How•Demo

Page 3: Testing the Web with Selenium

Vision

Page 4: Testing the Web with Selenium

Why

Page 5: Testing the Web with Selenium

What

Page 6: Testing the Web with Selenium

Selenium WebDriver

automates the browser

Page 7: Testing the Web with Selenium

How

Language Bindings

Page 8: Testing the Web with Selenium
Page 9: Testing the Web with Selenium

Finding our elements•find_element_by_id•find_element_by_class_name•find_element_by_xpath

Page 10: Testing the Web with Selenium

Act on our elements•click•send_keys•clear

Page 11: Testing the Web with Selenium

Examining our elements•get_attribute• is_displayed• is_enabled• is_selected

Page 12: Testing the Web with Selenium

Making Assertions•self.assertTrue•self.assertFalse•self.assertEqual

Page 13: Testing the Web with Selenium

Taking screenshots

save_screenshot(‘screenshot.png’)

Page 14: Testing the Web with Selenium

Demo Time!

Page 15: Testing the Web with Selenium

Resources• https://www.python.org/• https://selenium-python.readthedocs.org/

Page 16: Testing the Web with Selenium

Q & A