This commit is contained in:
Bernhard Posselt 2013-05-07 21:18:11 +02:00
Родитель f08dd69dd1
Коммит e83462f764
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -14,5 +14,5 @@ Feature: create_new
Scenario: hide caption when not hover
Given I hover over the add new button
When I hover out of the add new button
When I hover out off the add new button
Then I should not see an "Add Website" caption on the add new button

Просмотреть файл

@ -3,7 +3,7 @@ When (/^I hover over the add new button$/) do
page.execute_script("$('.list-title span').show()")
end
When (/^I hover out of the add new button$/) do
When (/^I hover out off the add new button$/) do
# FIXME: get this working with hover action
page.execute_script("$('.list-title span').hide()")
end