1.cy.get('.p-datatable-table').contains('td',text).should('be.visible');
2.cy.contains('td',text).get('.svg-inline--fa.fa-edit.fa-w-18').last().click({force: true})
In first point I am trying assertion on table that whether this particular element is present or not in a particular column. In second point if it finds element click the edit button against the element.
But the problem I am facing is that cypress is not identifying the element it says that this element is not present but actually it is present in the table.
