CARVIEW |
redsquirrel / safariwatir
- Source
- Commits
- Network (16)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Mon Oct 19 12:39:05 -0700 2009 | Added .idea directory to .gitignore. [richardlawrence] |
![]() |
.gitmodules | Tue Nov 10 20:40:07 -0800 2009 | Add WatirSpec submodule. - Also added a sectio... [aesterline] |
![]() |
History.txt | Wed Oct 21 13:04:49 -0700 2009 | Fixed date [tcopeland] |
![]() |
README.rdoc | Wed Dec 23 11:22:03 -0800 2009 | Added submodules, thanks to Sam Minnée for the ... [tcopeland] |
![]() |
Rakefile | Wed Oct 21 14:26:34 -0700 2009 | Oops, I didn't use echoe, just build the gem wi... [tcopeland] |
![]() |
lib/ | Wed Feb 10 17:59:28 -0800 2010 | Code from Avilla Dane to support selecting link... [tcopeland] |
![]() |
safariwatir.gemspec | Tue Oct 20 10:53:05 -0700 2009 | Prepping for 0.3.7 [tcopeland] |
![]() |
safariwatir_example.rb | Sat Feb 14 12:30:14 -0800 2009 | Moving code to lib/ and adding Watir::Exception... [caius] |
![]() |
spec/ | Tue Nov 10 20:40:07 -0800 2009 | Add WatirSpec submodule. - Also added a sectio... [aesterline] |
"There’s something eerily tingly about seeing a browser run by itself." twitter.com/swombat/status/1280692921
SafariWatir
- github.com/redsquirrel/safariwatir
- groups.google.com/group/watir-general
- wiki.openqa.org/display/WTR/SafariWatir
- twitter.com/SafariWatir
DESCRIPTION:
We are putting Watir on Safari. The original Watir (Web Application Testing in Ruby) project supports only IE on Windows. This project aims at adding Watir support for Safari on the Mac.
Requirements
Mac OS X running Safari. Some features require you to turn on "Enable access for assistive devices" in System Preferences > Universal Access.
SYNOPSIS:
require 'rubygems' require 'safariwatir' browser = Watir::Safari.new browser.goto("https://google.com") browser.text_field(:name, "q").set("obtiva") browser.button(:name, "btnI").click puts "FAILURE" unless browser.contains_text("software")
INSTALL:
[sudo] gem install safariwatir or git clone git://github.com/redsquirrel/safariwatir.git cd safariwatir git submodule update --init rake install
RUNNING SAFARIWATIR AGAINST WATIRSPEC
git clone git://github.com/redsquirrel/safariwatir.git cd safariwatir git submodule update --init spec spec
CONTRIBUTING:
WatirSpec is the emergent standard for the Watir API. We do not currently support all of the functionality described by WatirSpec. A good way to contribute would be to fix a few failing specs as defined by WatirSpec. See "Running SafairWatir Against WatirSpec" to get started.