Speaking at The Rails Edge
June 6th, 2007
Mike Mangino of Elevated Rails and I are joining forces to do a talk at The Rails Edge in Chicago in August. We’ll be talking about how to use RSpec and Selenium together to drive the development of Rails applications.
Hope to see you there!
3 Responses to “Speaking at The Rails Edge”
Sorry, comments are closed for this article.



July 13th, 2008 at 06:06 AM
Good luck, David!
July 13th, 2008 at 06:06 AM my question is very similar to this one, can rspec+selenium finally support this:
July 13th, 2008 at 06:06 AM
Syntactically, no. Functionally, yes:
describe "User admin" do it "should create a user when given valid user information" do @browser.open '/admin/users' @browser.get_body_text.should include('All Users') @browser.click 'link=New User' @browser.type 'name=login', 'forrestc' @browser.type 'name=firstname', 'Forrest' @browser.type 'name=lastname', 'Cao' @browser.submit "//form[@action='/users']" @browser.get_location.should == '/admin/users' @browser.get_body_text.should include('forrestc') endWe’re not wrapping Ruby selenese with custom expectation matchers – just providing access to it.