angular-cn/modules/examples/e2e_test/material/radio_spec.es6

22 lines
731 B
Plaintext
Raw Normal View History

var testUtil = require('angular2/src/test_lib/e2e_util');
describe('md-radio-button', function () {
var url = 'examples/src/material/radio/index.html';
beforeEach(() => { browser.get(url); });
afterEach(testUtil.verifyNoBrowserErrors);
it('should check one radio button and then check another', () => {
var standaloneRadios = element.all(by.css('[name="element"]'));
var firstRadio = standaloneRadios.first();
var lastRadio = standaloneRadios.last();
firstRadio.click();
expect(firstRadio.getAttribute('aria-checked')).toBe('true');
lastRadio.click();
expect(firstRadio.getAttribute('aria-checked')).toBe('false');
expect(lastRadio.getAttribute('aria-checked')).toBe('true');
});
});