disabled.js 254 B

12345678910
  1. describe('ng-disabled test', function() {
  2. beforeEach(function () {
  3. browser.get('/disabled.html');
  4. });
  5. it('should compile ng-disabled attribute', function() {
  6. expect(element(by.id('btn')).getAttribute('disabled')).not.toBe(null);
  7. });
  8. });