5 lines
120 B
Ruby
5 lines
120 B
Ruby
And /^I click on "([^"]*)" in the drawer$/ do |txt|
|
|
within("#drawer") do
|
|
find_link(txt).trigger "click"
|
|
end
|
|
end
|