angular / protractor

E2E test framework for Angular apps
http://www.protractortest.org
MIT License
8.75k stars 2.31k forks source link

Protractor doesn't support angular synchronization on iOS #2840

Open barmy-tester opened 8 years ago

barmy-tester commented 8 years ago

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:

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:

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

juliemr commented 8 years ago

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

ivarcegeka commented 8 years ago

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

wswebcreation commented 8 years ago

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

ivarcegeka commented 8 years ago

Nope, not yet.

ivarcegeka commented 8 years ago

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.

premkh9 commented 8 years ago

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',

teddyhwang commented 8 years ago

I'm wondering if this is the issue: https://discuss.appium.io/t/protractor-safari-tests-broken-on-ios-9/7354

premkh9 commented 8 years ago

Hi Sjelin, any resolution to resolve the issue

sjelin commented 8 years ago

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

premkh9 commented 8 years ago

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

sjelin commented 8 years ago

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

barmy-tester commented 8 years ago

Any news?

premkh9 commented 8 years ago

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

luker2 commented 8 years ago

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

aluzardo commented 8 years ago

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;

valburyakov commented 8 years ago

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

knreddy036 commented 8 years ago

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

sjelin commented 7 years ago

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.

wswebcreation commented 7 years ago

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

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

sjelin commented 7 years ago

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

luiscspinho commented 7 years ago

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?

sjelin commented 7 years ago

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

jlin412 commented 7 years ago

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

reppners commented 7 years ago

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 👍

BorntraegerMarc commented 6 years ago

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

wswebcreation commented 6 years ago

@BorntraegerMarc

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

BorntraegerMarc commented 6 years ago

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

FreshQa commented 6 years ago

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.

wswebcreation commented 6 years ago

@FreshQa

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

firstor commented 6 years ago

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
evilaliv3 commented 4 years ago

Have anyone found a solution for this?