Protractor: Protractor doesn't support angular synchronization on iOS

Created on 14 Jan 2016  路  31Comments  路  Source: angular/protractor

This issue is similar to https://github.com/angular/protractor/issues/1736

I cannot run my tests on iOS real device using appium and protractor. Tests fail each time with following errror: 'ERROR running appium command: Cannot assign to read only property X of true' where X is 'random' digit.
I've tried many configuration varieties, etc. and still got the same error.
The only workaround is to turn of synchronization by adding ignoreSynchronization=true to my tests. But with such workaround there is no point to use protractor anymore.

Here are instructions to integrate iOS with Safari, Appium and protractor:

  • git clone appium
  • intialize appium by running:

./reset.sh --ios --real-safari --profile '34e19aa1-xxxx-xxxx-xxxx-xxxxxxxxx' --verbose

  • run webproxy:
    ./bin/ios-webkit-debug-proxy-launcher.js -cXXXXXXXXXXXXXXX -d
  • start appium server:
    node lib/server/main.js -U XXXXXXXXXXXXXXXXXXXXXXXXXXX
  • run test by executing:
    protractor test.conf.js

You can find test.conf.js, appium console output and protractor console output in attached.
I've also tried to run tests with selenium grid by registering iOS node and the result was the same

Versions:

  • OSX El Capitan, 10.11.12
  • Xcode 7.2
  • Appium 1.4.16
  • Protractor 3.0.0
  • node 5.4.0
  • npm 3.3.12
  • DUT iOS version 9.2

If you need any additional information please let me know.

Just FYI, I can successfully run the same script with similar configuration on Windows - IE, Firefox, Chrome and Android - Chrome - real device

appium_output.txt
protractor_output.txt
test.conf.js.txt

iOS safari needs investigation

Most helpful comment

Safari 10.3 & 11.0 do not work with Protractor, however on Sierra macOS running Safari 11.0.1 does. Just turn off synchronization right before your first browser.get call and immediately turn it back on following that first call, then you're good to go.

All 31 comments

Assigning to @sjelin - we're hoping to refresh mobile docs/setup soon.

I have the same problem. I have a simple cordova application and some simple tests. The tests work perfectly in the browser and on Android, but in iOS I get the error: 'Failed: ERROR running Appium command: Cannot assign to read only property '1' of true'. I will attach the protractor config and the test.
I'm starting appium from the Appium.app. The only setting I changed from the default settings is that I checked 'use native instruments'.

Am I doing something wrong or is this a bug?

protractor-ios.config.txt
uitest.spec.txt
appium_log.txt
protractor_log.txt

Did you got this working on iOS simulator?
We faced the same problem, but in our opinion it's more a Appium issue then a Protractor issue. It looks like the returnedFromExecuteAtom is forcing a 'stop for alerts'. appium/lib/devices/ios/ios-controller.js:692

We are looking into it further

Nope, not yet.

I upgraded my Appium version to 1.5 (from 1.4.13) and now I don't get those errors anymore. I get different errors though. It seems as if the click doesn't work, but that is a different problem.

I am using Appium 1.4.13 and Xcode 7.2 but I am not able to execute any of my tests in IOS simulator. Issue persists in Sauce labs emulator as well

Job Details - https://saucelabs.com/beta/tests/f3bb551a0daf4f5d9d867b71e9b29657
multiCapabilities: [{
'browserName': 'Safari',
'appium-version': '1.4.13',
platformName: 'iOS',
platformVersion: '9.2',
deviceName: 'iPhone 6 Plus',
'name': 'Protractor Job',

Hi Sjelin, any resolution to resolve the issue

Yeah, I'm working on it. Hopefully I'll have something in next week, but we'll see.

Hi Sjelin, Hope you are doing good ! Did you get a chance to look into the issue?

I did! I got wrapped up in other things though. Hopefully before the end of this week I'll have something for you :smile:

Any news?

Hi Sjelin, any updates? Its really holding our IOS automation... Earliest fix on this would be much more appreciated !!

Our team is also looking for any update! The BrowserStack emulator seems to have the same issue as well.

We have the same problem. We were able to run test on iOS 8 but when we updated to iOS 9 tests don't run.

Only run if browser.ignoreSynchronization = true;

I have the simillar issue when running protractor(v 4.0.8) tests on IOS 9.3 (either Emulator or Real device), Ionic2 Hybrid app with Angular2. In protractor.conf _useAllAngular2AppRoots: true_
After first load and clicking on submit button, appium hangs with message:
[RemoteDebugger] Received applicationSentData response
[RemoteDebugger] Got a blank data response from debugger

On Real device another behaviour, there is no hanging but some clicks on elements won't work.

appium-log.txt

Is anyone able to launch safari browser on real iOS devices with protractor

Hey guys, sorry for the lack of updates. I'm not entirely sure what I was talking about in https://github.com/angular/protractor/issues/2840#issuecomment-197036238 but support for iOS an mobile in general has improved a lot. Maybe https://github.com/angular/protractor/pull/3326 will address your problems but probably not to be honest. I'll see if I can dig into this next week.

I currently use protractor and iOS Safari in 3 different combinations and it works:

  • appium + iOS 10.2 simulator + Safari
  • Saucelabs + iOS 10.2 simulator + Safari
  • Perfecto + (iPhone 5C / iPhone 6S / iPhone 7) + Safari

The first 2 are simulators, Perfecto has physical devices

@sjelin, if you need help with this I can maybe help to debug it if there are problems

@wswebcreation thanks for the offer! I'll let you know

Hello,
I just faced this problem. I'm trying to automate Safari with iOS 10.0.1 using Appium and Protractor.
I've everything working just fine if I do something like this:

browser.ignoreSynchronization = true;
browser.get('https://myAngularPage.com');
browser.wait(protractor.until.elementLocated(by.css('.class')), 5000);
element.click()

However, since I've an angular page I should not need to ignoreSync and wait for the element to be visible to click on him. I've this working on Android/Chrome without the ignoreSync and the wait until element located. However, in Safari/iOS, if i don't add the ignoreSynch before the browser get, the website will be stuck on the bootstrap throwing the "angular never provided resumebootstrap" with just the "browser.get()" code on my test.

Is this the same issue that angular and iOS/Safari are not yet fully supported?

It's still not fully supported, no. Unfortunately, I was in charge of mobile support and I was just transferred to another team, so support may be a long time coming. There are some good resources online though

It's funny. I have it worked in iOS but not in Android. Just opposite of your problem.

Trying to get tests to run in mobile safari with Appium / iOS simulator / 10.3 but also getting angular never provided resumeBootstrap.

Safari 10.1 on macOS Sierra seems to be working with this workaround but would throw the same error otherwise.

// TODO workaround for https://github.com/angular/protractor/issues/4004
if (navigator.webdriver) {
    window.name = "NG_DEFER_BOOTSTRAP!" + window.name;
}

angular.bootstrap();

EDIT:

Ok, so specifying this

// TODO workaround for https://github.com/angular/protractor/issues/4004

window.name = "NG_DEFER_BOOTSTRAP!" + window.name;

angular.bootstrap();

will let angular synchronize with Safari running in iOS simulator. I don't know any global browser variable for Appium to set this line conditionally. If anyone does pls let me know 馃憤

@sjelin does this issue present itself only when combined with appium or also if the "normal" iOS safari driver is used?

@BorntraegerMarc

What do you exactly mean? the iOS safari driver is used by Appium (?)

@wswebcreation I mean writing protractor tests without appium 馃槃 just protractor tests for a angular website...

Safari 10.3 & 11.0 do not work with Protractor, however on Sierra macOS running Safari 11.0.1 does. Just turn off synchronization right before your first browser.get call and immediately turn it back on following that first call, then you're good to go.

@FreshQa

Tnx for your answer / workaround, will also try it.

Can anyone help me with the following error?

warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
$ tsc -p e2e/tsconfig.e2e.json && protractor e2e/build/protractor.config.js
[06:26:44] W/driverProviders - Using driver provider hosted, but also found extra driver provider parameter(s): browserstackUser, browserstackKey
[06:26:44] I/launcher - Running 1 instances of WebDriver
[06:26:44] I/hosted - Using the selenium server at http://hub-cloud.browserstack.com/wd/hub
[06:27:00] W/runner - Ignoring unknown extra flags: target. This will be an error in future versions, please use --disableChecks flag to disable the  Protractor CLI flag checks.
...
Error: Error while running testForAngular: Unable to communicate to node
    at executeAsyncScript_.then (/home/workspace/project/node_modules/protractor/lib/browser.ts:945:27)
    at ManagedPromise.invokeCallback_ (/home/workspace/project/node_modules/selenium-webdriver/lib/promise.js:1366:14)
    at TaskQueue.execute_ (/home/workspace/project/node_modules/selenium-webdriver/lib/promise.js:2970:14)
    at TaskQueue.executeNext_ (/home/workspace/project/node_modules/selenium-webdriver/lib/promise.js:2953:27)
    at asyncRun (/home/workspace/project/node_modules/selenium-webdriver/lib/promise.js:2813:27)
    at /home/workspace/project/node_modules/selenium-webdriver/lib/promise.js:676:7
    at process._tickCallback (internal/process/next_tick.js:109:7)
[ERROR] Error: Error: Error while running testForAngular: Unable to communicate to node
    at /home/workspace/project/e2e/build/specs/home.spec.js:17:19
    at process._tickCallback (internal/process/next_tick.js:109:7)
[05:43:16] E/launcher - Process exited with error code 1
  • Protractor: v5.1.2
  • Protractor configuration:
    seleniumAddress: 'http://hub-cloud.browserstack.com/wd/hub', baseUrl: 'http://localhost:5001', ... capabilities: { 'name': 'Safari on iPhone', 'device': 'iPhone 7 Plus', 'realMobile': 'true', 'os': 'ios', 'os_version': '10.3', 'browserName': 'iPhone', 'browserstack.local': true, 'browserstack.debug': true }

Have anyone found a solution for this?

Was this page helpful?
0 / 5 - 0 ratings