Reputation: 121
I want to open a browser from Android application for automation through calabash-android using ruby. Is it possible by using Capybara (gem install capybara
) or some other method?
Upvotes: 1
Views: 212
Reputation: 7077
Divya!
Capybara
- Web browser automation framework.
Calabash-android
- Mobile app automation framework.
Both this framework is based on Cucumber(a command line tool)
You can use Capybara
to run the test in system web browser
as well as mobile web browser
. So my answer is YES.
Upvotes: 1