Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

150
Views
Cypress. Delete row in table and check it

I have little experience with Java. therefore I ask you for help. The situation is like this

  1. Find out the number of lines
  2. Delete line
  3. Check that the number of lines is one less than it was

Here is my code. I'm more than sure he's wrong. And please help me how to write correctly "number of lines - 1" in the last step. Thanks !

it('Step 5 - get the table row count', () => {
        cy.getByTestId('user-management-roles-table-container')
            .find("tr")
            .then((row) => {
                //row.length will give you the row count
                cy.log(String(row.length))
            });
    });
    it('Step 6 - Click on the 3 dots', () => {
        cy.getByTestId('button-group-buttonGroup-dropdown-button').first().click();
        cy.getByTestId('select-menu-buttonGroup-items-wrapper').should('be.visible');
    });

    it('Step 7 - Click on the "Delete" button', () => {
        cy.getByTestId('select-menu-buttonGroup-value-delete').click();

    });

    it('Step 8 - ', () => {
        cy.getByTestId('user-management-roles-table-container').find('tr').its('length').should('eq', "number of lines - 1" );
    });
  
    ```
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can do something like this:

let lenBefore;

it('Step 5 - get the before table row count', () => {
  cy.getByTestId('user-management-roles-table-container').find("tr").its('length').then((len) => {
    lenBefore = len;
    cy.log('Initial table Length is: ' + lenBefore);
  });
});

it('Step 6 - Click on the 3 dots', () => {
  cy.getByTestId('button-group-buttonGroup-dropdown-button').first().click();
  cy.getByTestId('select-menu-buttonGroup-items-wrapper').should('be.visible');
});

it('Step 7 - Click on the "Delete" button', () => {
  cy.getByTestId('select-menu-buttonGroup-value-delete').click();
});

it('Step 5 - get the after table row count', () => {
  cy.getByTestId('user-management-roles-table-container').find("tr").its('length').then((lenAfter) => {
    cy.log('After table Length is: ' + lenAfter);
    expect(lenBefore).to.equal(lenAfter - 1);
  });
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!