All Projects → scottcsims → SeleniumFury

scottcsims / SeleniumFury

Licence: other
Page object factory for selenium and ruby

Programming Languages

ruby
36898 projects - #4 most used programming language
HTML
75241 projects
Gherkin
971 projects

SeleniumFury

Selenium Fury helps you quickly build page objects when using either Selenium RC API or Selenium Web Driver API.

Demo Setup

If you are running the demo from the source.

bundle console
require 'spec/spec_helper'

If you are running the demo from the installed gem

irb
require 'selenium_fury'
include SeleniumFury::SeleniumWebDriver::CreateSeleniumWebDriver

Quick Test Demo

launch_web_driver("http://www.homeaway.com/")
home_page=get_page_object(driver,'HomePage')
home_page.search_keywords.send_keys 'Destin'
home_page.keyword_submit.click
driver.quit

Generate Demo

launch_web_driver("http://www.homeaway.com/")
generate(driver)
driver.quit

Validate Demo

launch_web_driver("http://www.homeaway.com/")
get_page_object(driver,'HomePage')
validate(HomePage)
driver.quit

Copyright

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].