mirror of
https://github.com/appium/appium.git
synced 2026-02-15 06:20:22 -06:00
19 lines
644 B
JavaScript
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();
|
|
// });
|
|
// });
|
|
//});
|