Files
appium/test/functional/testapp/frames.js
Santiago Suarez Ordoñez f236a37c2f fixing the tests
2013-02-05 03:48:39 -08:00

19 lines
644 B
JavaScript

// This is basically a port of webdriver-test.py
// https://github.com/hugs/appium/blob/master/sample-code/webdriver-test.py
/*global it:true */
// "use strict";
//
// var describeWd = require("../../helpers/driverblock.js").describeForApp('TestApp')
// , should = require("should");
//
//describeWd('check frame command', function(h) {
// return it('should actually switch frames', function(done) {
// h.driver.frame(null, function(err) {
// // TODO: make a test that proves frame switching actuall worked once we
// // move to testing with UI Catalog app
// should.not.exist(err);
// done();
// });
// });
//});