我尝试了一些不同的方法,包括:
When /^I touch the alertview button marked "(.*?)"$/ do |alert_btn_name|
touch "view: 'UIAlertButton' marked:'#{alert_btn_name}'"
end
和
When /^I touch the (\d*)(?:st|nd|rd|th)? alert view button$/ do |ordinal|
ordinal = ordinal.to_i
touch( "alertView threePartButton tag:#{ordinal}" )
end
这样做的好方法是什么?