mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-12 05:43:34 +00:00
* introducing pageObjects * fixes * pretty code Co-authored-by: lirazyehezkel <61656597+lirazyehezkel@users.noreply.github.com>
9 lines
310 B
JavaScript
9 lines
310 B
JavaScript
it('check', function () {
|
|
cy.visit(`http://localhost:${Cypress.env('port')}/`);
|
|
|
|
cy.get('.header').should('be.visible');
|
|
cy.get('.TrafficPageHeader').should('be.visible');
|
|
cy.get('.TrafficPage-ListContainer').should('be.visible');
|
|
cy.get('.TrafficPage-Container').should('be.visible');
|
|
});
|