I'm trying to set up my UIAutomation using bwoken and tuneupJS. I followed the installation steps listed here, except I installed version 2.1.0rc.2 to get rid of the template path change in Xcode 6. Therefore my Gemfile looks like this:
# A sample Gemfile
source "https://rubygems.org"
# gem "rails"
gem 'bwoken', '2.1.0.rc.2'
gem 'cocoapods'
I have written a simple test just to see if I get anything to the console when I run it:
#import "../../../../Pods/tuneup_js/tuneup.js"
test("Example test", function(target, app) {
var searchButton = target.frontMostApp().mainWindow().buttons()["Search Button"];
assertTrue(searchButton.isValid(), "Search Button should be available on the screen");
searchButton.tap();
var saveSearchButton = target.frontMostApp().mainWindow().buttons()["Save"];
assertTrue(saveSearchButton.isValid(), "Save Button should be available on the screen");
saveSearchButton.tap();
searchButton.tap();
// tap on the background
target.frontMostApp().mainWindow().buttons()[7].tap();
searchButton.tap();
saveSearchButton.tap();
});
This is what I get back:
Building......................................................................
Build Successful!
iphone FirstScript.js
ipad FirstScript.js
The FirstScript.js is the test script I pasted. This doesn't look right, I'm assuming I should get more verbose output, just like the one in the example on the bwoken github page. So the question is: What am I missing here, where did I go wrong so my tests are not executed?
I also discovered some other problems when playing with bwoken:
- When I try to use --verbose flag, The only thing that happens is the build, there is no output indicating that any tests started.
- When I use --skip-build flag, it seems not to have any effect, the workspace is building anyway
- I miss some documentation on #github directive, namely how do I import the files that I get using #github? Where are they downloaded?
Edit: I tried to run the same directly with instruments command, it seems to work fine:
2014-11-17 16:08:00 +0000 Start: Example test 2014-11-17 16:08:01 +0000 Debug: target.frontMostApp().mainWindow().buttons()["Search Button"].tap() 2014-11-17 16:08:01 +0000 Debug: target.frontMostApp().mainWindow().buttons()["Save"].tap() 2014-11-17 16:08:01 +0000 Debug: target.frontMostApp().mainWindow().buttons()["Search Button"].tap() 2014-11-17 16:08:03 +0000 Debug: target.frontMostApp().mainWindow().buttons()[7].tap() 2014-11-17 16:08:03 +0000 Debug: target.frontMostApp().mainWindow().buttons()["Search Button"].tap() 2014-11-17 16:08:04 +0000 Debug: target.frontMostApp().mainWindow().buttons()["Save"].tap() 2014-11-17 16:08:04 +0000 Pass: Example test
Instruments Trace Complete (Duration : 7.199495s;
Output : /Users/me/Documents/Project/MyApp/instrumentscli8.trace)
I found similar issue in the bwoken GitHub repository issues section.
What you need to do is to look up the available devices by doing:
this will print the list of available devices similar to this:
Note the MacBook Pro being the first entry, which allegedly is the root problem here. Now, you can work around it by calling:
I hope this helps somebody.