-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Description
I have a step: Then I should see an alert view titled "Warning"
On moredip/Frank I found:
Then /^I should see an alert view titled "([^\"]*)"$/ do |expected_mark|
if frankly_os_version.to_f >= 7.0
values = frankly_map( "view:'_UIModalItemRepresentationView' label", 'text')
else
values = frankly_map( 'alertView', 'title')
end
values.should include(expected_mark)
end
Which works fine (iOS7), but on TEstingWithFrank/Frank I found:
Then /^I should see an alert view titled "([^\"]*)"$/ do |expected_mark|
values = frankly_map( 'alertView', 'title')
values.should include(expected_mark)
end
Which fails. It looks like there are changes being done on modern/Frank which have not made it to TestingWithFrank/Frank.
Can we get this cleaned up or is there something else at play?
Metadata
Metadata
Assignees
Labels
No labels