Simplified web automation based on Selenium http://heliumhq.com - - PowerPoint PPT Presentation

simplified web automation
SMART_READER_LITE
LIVE PREVIEW

Simplified web automation based on Selenium http://heliumhq.com - - PowerPoint PPT Presentation

Simplified web automation based on Selenium http://heliumhq.com Michael Herrmann http://heliumhq.com @BugFreeSoftware Web automation Automate browsers: start browser open a web page fill in a form Testing & Web


slide-1
SLIDE 1

http://heliumhq.com @BugFreeSoftware

Simplified web automation

based on Selenium http://heliumhq.com Michael Herrmann

slide-2
SLIDE 2

http://heliumhq.com @BugFreeSoftware

Web automation

  • Automate browsers:

–start browser –open a web page –fill in a form

  • Testing & Web scraping
slide-3
SLIDE 3

http://heliumhq.com @BugFreeSoftware

De-facto standard

But there is a problem

  • Fast
  • Stable • Active
slide-4
SLIDE 4

http://heliumhq.com @BugFreeSoftware

from selenium.webdriver import * ff = Firefox() ff.get(some_url) ... textfield = \ ff.find_element_by_id('u_0_1_y') textfield.send_keys("Text") button = ff.find_element_by_css_selector( '._42ft._4jy0._11b._4jy3._4jy1' ) button.click()

slide-5
SLIDE 5

http://heliumhq.com @BugFreeSoftware

from helium.api import * start_firefox(some_url) ... write("Text", into="Update Status") click("Post")

slide-6
SLIDE 6

http://heliumhq.com @BugFreeSoftware

So what’s the problem?

  • HTML IDs, CSS-Selectors, XPaths
  • WebDriverWait(ff, 10).until(…)
  • StaleElementReferenceException, …
  • ff.switch_to_frame(…)
  • ff.switch_to_window(…)
slide-7
SLIDE 7

http://heliumhq.com @BugFreeSoftware

  • Handles technical details for you.
  • Add-on to Selenium
  • 100% Selenium 2 compatible
  • Commercial
slide-8
SLIDE 8

http://heliumhq.com @BugFreeSoftware

DEMO

slide-9
SLIDE 9

http://heliumhq.com @BugFreeSoftware

Summary

  • Selenium is important, but too technical.
  • Helium is much easier to use:

vs.

  • Still have all benefits of Selenium.
slide-10
SLIDE 10

http://heliumhq.com @BugFreeSoftware

http://heliumhq.com/download

Thank you for your attention