table.spec.js 560 B

1234567891011121314
  1. // table.spec.js created with Cypress
  2. //
  3. // Start writing your Cypress tests below!
  4. // If you're unfamiliar with how Cypress works,
  5. // check out the link below and learn how to write your first test:
  6. // https://on.cypress.io/writing-first-test
  7. describe('table', () => {
  8. it('row selection', () => {
  9. cy.visit('http://127.0.0.1:6009/iframe.html?id=table--selection-table&args=&viewMode=story');
  10. cy.get('.semi-table-row-head .semi-checkbox-inner-display').click();
  11. cy.get('.semi-checkbox-checked').should('have.length', 4);
  12. });
  13. });