Sha256: 8dc2aff63324b893129c2249e7bf3204d1a2a151a3bd1bcaad58b9e59e3e9711
Contents?: true
Size: 354 Bytes
Versions: 6
Compression:
Stored size: 354 Bytes
Contents
Given /^I am on the tabs page$/ do visit TabsPage end When /^I select the "(.+)" tab$/ do |label| on(TabsPage).tabs.select(label) end Then /^the current tab should be "(.+)"$/ do |label| on(TabsPage).tabs.selected.should == label end Then /^the tab labels should include "([^"]*)"$/ do |label| on(TabsPage).tabs.labels.should include label end
Version data entries
6 entries across 6 versions & 1 rubygems