Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alert views not being found #34

Open
drekka opened this issue Aug 20, 2014 · 1 comment
Open

Alert views not being found #34

drekka opened this issue Aug 20, 2014 · 1 comment

Comments

@drekka
Copy link

drekka commented Aug 20, 2014

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?

@honsq90
Copy link

honsq90 commented Aug 27, 2014

I have similar issue. When I try and search for "view:'_UIModalItemRepresentationView' " using Symbiote it returns "Sorry, no views matched that selector so none were highlighted". I suspect the Shelley module hasn't been updated as well?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants