Top "Angularjs-e2e" questions

The End-to-End testing framework for AngularJS.

Getting error: Error while waiting for Protractor to sync with the page: {}

My e2e.conf.coffee file is: exports.config = baseUrl: 'http://localhost:9001' specs: [ 'e2e/**/*.coffee' ] framework: 'jasmine' I …

angularjs protractor angularjs-e2e
Download a file protractor test case

I am writting a protractor test case to download a file which can be of any type. Scenario: Download a …

angularjs protractor angularjs-e2e
Protractor: Testing Angular App in an Iframe

I've got an interesting setup here. I have an Angular App that loads another Angular App inside an iframe. I'm …

angularjs selenium protractor angularjs-e2e
Protractor - Wait for async promise before doing next

First of all, I've already checked various post and blogs concerning that point and I still can't figure out how …

selenium-webdriver webdriver promise protractor angularjs-e2e
“cannot get automation extension” error with chrome version: 57.0.2987.98

chrome version : 57.0.2987.98 m (64-bit) "protractor": "4.0.11", "protractor-console-plugin": "0.1.1", "protractor-jasmine2-html-reporter": "0.0.6", "protractor-notify-plugin": "1.0.0", protractor failed to launch chrome with the following error: unknown error: …

google-chrome automation protractor angularjs-e2e
Setting cookies before browser.get

Our (PHP) application requires certain cookies to be set in order to load an Angular.js client app. If the …

angularjs protractor angularjs-e2e
protractor expect currenturl fails

I'm trying to get an e2e test running against my local server and test that the resulting url (after …

angularjs angularjs-e2e protractor
How to pass baseUrl from protractor.conf into my test to assert it in tests?

What I want to do is: expect(browser.getCurrentUrl()).toEqual(protractor.baseUrl + urls.cookiesPage()); This is what I get: - …

protractor angularjs-e2e
protractor- difference between toBe(truth) and toBeTruthy()

as the title says- is there a difference between (for example) expect(element).isDisplayed().toBeTruthy(); and expect(element).isDisplayed().toBe(…

protractor assertions angularjs-e2e
Javascript.confirm() and Angularjs Karma e2e test

I have an Angularjs application that uses simple javascript confirm before executing some actions. Controller: function TokenController($scope) { $scope.token = …

angularjs jasmine karma-runner angularjs-e2e