-ios_uiautomation -> -ios uiautomation

This commit is contained in:
jonahss
2014-03-27 14:42:14 -07:00
parent 7cedf44631
commit 0ff63ff003
6 changed files with 10 additions and 10 deletions
@@ -189,9 +189,9 @@ describe("apidemo - find elements -", function () {
});
});
describe('invalid locator strategy', function () {
it('should not accept -ios_uiautomation locator strategy', function (done) {
it('should not accept -ios uiautomation locator strategy', function (done) {
driver
.elements('-ios_uiautomation', '.elements()').catch(function (err) {
.elements('-ios uiautomation', '.elements()').catch(function (err) {
throw JSON.stringify(err.cause.value);
})
.should.be.rejectedWith(/The requested resource could not be found/)
@@ -207,7 +207,7 @@ describe('uicatalog - find element -', function () {
});
describe('FindElement(s)ByUIAutomation', function () {
var byUIA = '-ios_uiautomation';
var byUIA = '-ios uiautomation';
// Running sequentially cause parallel runs crash appium
var filterDisplayed = function (els) {