12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
// Copyright (C) 2021-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
Cypress.Commands.add('goToModelsList', () => {
|
|
cy.get('a[value="models"]').click();
|
|
cy.url().should('include', '/models');
|
|
cy.get('.cvat-models-page').should('exist');
|
|
});
|