config.js 256 B

12345678910
  1. describe('config test', function() {
  2. beforeEach(function () {
  3. browser.get('/config.html');
  4. });
  5. it('change default style to expand-left', function() {
  6. expect(element(by.id('btn')).getAttribute('data-style')).toEqual('expand-left');
  7. });
  8. });