Revision 2629a8a747b4149aec1644c9273777624f336f88 authored by Xavier Guimard on 12 January 2019, 07:45:43 UTC, committed by Xavier Guimard on 12 January 2019, 07:45:43 UTC
1 parent 507f3c0
Raw File
06-form.js
'use strict';

/* http://docs.angularjs.org/guide/dev_guide.e2e-testing */

describe('06 Lemonldap::NG Manager', function() {

  describe('Form control, part 2', function() {

    it('should display portal skin choice', function() {
      browser.get('/#/confs/1');
      element(by.id('a-generalParameters')).click();
      element(by.id('a-portalParams')).click();
      element(by.id('a-portalCustomization')).click();
      element(by.id('t-portalSkin')).click();
      element(by.css('[ng-click="showModal(\'portalSkinChoice.html\')"]')).click();
      var skinChoice = element.all(by.repeater('b in currentNode.select'));
      expect(skinChoice.count()).toEqual(1);
    });
  });
});
back to top