我正在尝试使用calabash-ios设置位置,可以使用calabash-ios设置位置吗?
在这里搜索了 https://github.com/calabash/calabash-ios/wiki/02-Predefined-steps,一无所获。
-编辑-
我找到了一个解决方案,有一个名为set_location的方法,您只需编辑01_launch.rb文件并使用以下代码:
Before do |scenario|
@calabash_launcher = Calabash::Cucumber::Launcher.new
unless @calabash_launcher.calabash_no_launch?
@calabash_launcher.relaunch
set_location(latitude: -23.884659, longitude: -46.099488)
@calabash_launcher.calabash_notify(self)
end
end
您可以使用以下内容设置位置
set_location(latitude: #{value}, longitude: #{value})