13 lines
515 B
Ruby
13 lines
515 B
Ruby
When /^I focus the comment field$/ do
|
|
find("a.focus_comment_textarea").click
|
|
end
|
|
|
|
Then /^the first comment field should be open/ do
|
|
css_query = "$('#main_stream .stream_element:first .submit_button .comment_submit.button:visible')"
|
|
page.evaluate_script("#{css_query}.length").should == 1
|
|
end
|
|
|
|
Then /^the first comment field should be closed$/ do
|
|
css_query = "$('#main_stream .stream_element:first .submit_button .comment_submit.button:hidden')"
|
|
page.evaluate_script("#{css_query}.length").should == 1
|
|
end
|