You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
610 lines
24 KiB
JavaScript
610 lines
24 KiB
JavaScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
require('cypress-file-upload');
|
|
require('../plugins/imageGenerator/imageGeneratorCommand');
|
|
require('../plugins/createZipArchive/createZipArchiveCommand');
|
|
require('cypress-localstorage-commands');
|
|
|
|
let selectedValueGlobal = '';
|
|
|
|
Cypress.Commands.add('login', (username = Cypress.env('user'), password = Cypress.env('password')) => {
|
|
cy.get('[placeholder="Username"]').type(username);
|
|
cy.get('[placeholder="Password"]').type(password);
|
|
cy.get('[type="submit"]').click();
|
|
cy.url().should('match', /\/tasks$/);
|
|
});
|
|
|
|
Cypress.Commands.add('logout', (username = Cypress.env('user')) => {
|
|
cy.get('.cvat-right-header').within(() => {
|
|
cy.get('.cvat-header-menu-dropdown').should('have.text', username).trigger('mouseover', { which: 1 });
|
|
});
|
|
cy.get('span[aria-label="logout"]').click();
|
|
cy.url().should('include', '/auth/login');
|
|
cy.visit('/auth/login'); // clear query parameter "next"
|
|
cy.closeModalUnsupportedPlatform();
|
|
});
|
|
|
|
Cypress.Commands.add('userRegistration', (firstName, lastName, userName, emailAddr, password) => {
|
|
cy.get('#firstName').type(firstName);
|
|
cy.get('#lastName').type(lastName);
|
|
cy.get('#username').type(userName);
|
|
cy.get('#email').type(emailAddr);
|
|
cy.get('#password1').type(password);
|
|
cy.get('#password2').type(password);
|
|
cy.get('.register-form-button').click();
|
|
if (Cypress.browser.family === 'chromium') {
|
|
cy.url().should('include', '/tasks');
|
|
}
|
|
});
|
|
|
|
Cypress.Commands.add(
|
|
'createAnnotationTask',
|
|
(
|
|
taksName = 'New annotation task',
|
|
labelName = 'Some label',
|
|
attrName = 'Some attr name',
|
|
textDefaultValue = 'Some default value for type Text',
|
|
image = 'image.png',
|
|
multiAttrParams,
|
|
advancedConfigurationParams,
|
|
forProject = false,
|
|
attachToProject = false,
|
|
projectName,
|
|
) => {
|
|
cy.get('#cvat-create-task-button').click({ force: true });
|
|
cy.url().should('include', '/tasks/create');
|
|
cy.get('[id="name"]').type(taksName);
|
|
if (!forProject) {
|
|
cy.get('.cvat-constructor-viewer-new-item').click();
|
|
cy.get('[placeholder="Label name"]').type(labelName);
|
|
cy.get('.cvat-new-attribute-button').click();
|
|
cy.get('[placeholder="Name"]').type(attrName);
|
|
cy.get('.cvat-attribute-type-input').click();
|
|
cy.get('.ant-select-item-option').contains('Text').click();
|
|
cy.get('[placeholder="Default value"]').type(textDefaultValue);
|
|
if (multiAttrParams) {
|
|
cy.updateAttributes(multiAttrParams);
|
|
}
|
|
cy.contains('button', 'Done').click();
|
|
} else {
|
|
if (attachToProject) {
|
|
cy.get('.cvat-project-search-field').click();
|
|
cy.get('.ant-select-dropdown')
|
|
.not('.ant-select-dropdown-hidden')
|
|
.within(() => {
|
|
cy.get(`.ant-select-item-option[title="${projectName}"]`).click();
|
|
});
|
|
}
|
|
cy.get('.cvat-project-search-field').within(() => {
|
|
cy.get('[type="search"]').should('have.value', projectName);
|
|
});
|
|
cy.get('.cvat-constructor-viewer-new-item').should('not.exist');
|
|
}
|
|
cy.get('input[type="file"]').attachFile(image, { subjectType: 'drag-n-drop' });
|
|
if (advancedConfigurationParams) {
|
|
cy.advancedConfiguration(advancedConfigurationParams);
|
|
}
|
|
cy.contains('button', 'Submit').click();
|
|
cy.contains('The task has been created');
|
|
if (!forProject) {
|
|
cy.goToTaskList();
|
|
} else {
|
|
cy.goToProjectsList();
|
|
}
|
|
},
|
|
);
|
|
|
|
Cypress.Commands.add('openTask', (taskName) => {
|
|
cy.contains('strong', taskName).parents('.cvat-tasks-list-item').contains('a', 'Open').click({ force: true });
|
|
cy.get('.cvat-task-details').should('exist');
|
|
});
|
|
|
|
Cypress.Commands.add('saveJob', (method = 'PATCH', status = 200) => {
|
|
cy.server().route(method, '/api/v1/jobs/**').as('saveJob');
|
|
cy.get('button').contains('Save').click({ force: true });
|
|
cy.wait('@saveJob').its('status').should('equal', status);
|
|
});
|
|
|
|
Cypress.Commands.add('getJobNum', (jobID) => {
|
|
cy.get('.cvat-task-jobs-table')
|
|
.contains(/^0-/)
|
|
.parents('.cvat-task-jobs-table-row')
|
|
.find('td')
|
|
.eq(0)
|
|
.invoke('text')
|
|
.then(($tdText) => {
|
|
return Number($tdText.match(/\d+/g)) + jobID;
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('openJob', (jobID = 0) => {
|
|
cy.getJobNum(jobID).then(($job) => {
|
|
cy.get('.cvat-task-jobs-table-row').contains('a', `Job #${$job}`).click();
|
|
});
|
|
cy.url().should('include', '/jobs');
|
|
cy.get('.cvat-canvas-container').should('exist');
|
|
});
|
|
|
|
Cypress.Commands.add('openTaskJob', (taskName, jobID = 0) => {
|
|
cy.openTask(taskName);
|
|
cy.openJob(jobID);
|
|
});
|
|
|
|
Cypress.Commands.add('createRectangle', (createRectangleParams) => {
|
|
cy.get('.cvat-draw-rectangle-control').click();
|
|
cy.switchLabel(createRectangleParams.labelName, 'rectangle');
|
|
cy.contains('Draw new rectangle')
|
|
.parents('.cvat-draw-shape-popover-content')
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').then(($labelValue) => {
|
|
selectedValueGlobal = $labelValue.text();
|
|
});
|
|
cy.get('.ant-radio-wrapper').contains(createRectangleParams.points).click();
|
|
cy.get('button').contains(createRectangleParams.type).click({ force: true });
|
|
});
|
|
cy.get('.cvat-canvas-container').click(createRectangleParams.firstX, createRectangleParams.firstY);
|
|
cy.get('.cvat-canvas-container').click(createRectangleParams.secondX, createRectangleParams.secondY);
|
|
if (createRectangleParams.points === 'By 4 Points') {
|
|
cy.get('.cvat-canvas-container').click(createRectangleParams.thirdX, createRectangleParams.thirdY);
|
|
cy.get('.cvat-canvas-container').click(createRectangleParams.fourthX, createRectangleParams.fourthY);
|
|
}
|
|
cy.checkObjectParameters(createRectangleParams, 'RECTANGLE');
|
|
});
|
|
|
|
Cypress.Commands.add('switchLabel', (labelName, objectType) => {
|
|
cy.get(
|
|
objectType === 'tag' ? '.cvat-setup-tag-popover-visible' : `.cvat-draw-${objectType}-popover-visible`,
|
|
).within(() => {
|
|
cy.get('.ant-select-selection-item').click();
|
|
});
|
|
cy.get('.ant-select-dropdown')
|
|
.not('.ant-select-dropdown-hidden')
|
|
.within(() => {
|
|
cy.get(`.ant-select-item-option[title="${labelName}"]`).click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('checkObjectParameters', (objectParameters, objectType) => {
|
|
let listCanvasShapeId = [];
|
|
cy.document().then((doc) => {
|
|
const listCanvasShape = Array.from(doc.querySelectorAll('.cvat_canvas_shape'));
|
|
for (let i = 0; i < listCanvasShape.length; i++) {
|
|
listCanvasShapeId.push(listCanvasShape[i].id.match(/\d+$/));
|
|
}
|
|
const maxId = Math.max(...listCanvasShapeId);
|
|
cy.get(`#cvat_canvas_shape_${maxId}`).should('exist').and('be.visible');
|
|
cy.get(`#cvat-objects-sidebar-state-item-${maxId}`)
|
|
.should('contain', maxId)
|
|
.and('contain', `${objectType} ${objectParameters.type.toUpperCase()}`)
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').should('have.text', selectedValueGlobal);
|
|
});
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('createPoint', (createPointParams) => {
|
|
cy.get('.cvat-draw-points-control').click();
|
|
cy.switchLabel(createPointParams.labelName, 'points');
|
|
cy.contains('Draw new points')
|
|
.parents('.cvat-draw-shape-popover-content')
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').then(($labelValue) => {
|
|
selectedValueGlobal = $labelValue.text();
|
|
});
|
|
if (createPointParams.numberOfPoints) {
|
|
createPointParams.complete = false;
|
|
cy.get('.ant-input-number-input').clear().type(createPointParams.numberOfPoints);
|
|
}
|
|
cy.get('button').contains(createPointParams.type).click({ force: true });
|
|
});
|
|
createPointParams.pointsMap.forEach((element) => {
|
|
cy.get('.cvat-canvas-container').click(element.x, element.y);
|
|
});
|
|
if (createPointParams.complete) {
|
|
cy.get('.cvat-canvas-container').trigger('keydown', { key: 'n' }).trigger('keyup', { key: 'n' });
|
|
}
|
|
cy.checkObjectParameters(createPointParams, 'POINTS');
|
|
});
|
|
|
|
Cypress.Commands.add('changeAppearance', (colorBy) => {
|
|
cy.get('.cvat-appearance-color-by-radio-group').within(() => {
|
|
cy.get('[type="radio"]').check(colorBy, { force: true });
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('shapeGrouping', (firstX, firstY, lastX, lastY) => {
|
|
cy.get('.cvat-canvas-container')
|
|
.trigger('keydown', { key: 'g' })
|
|
.trigger('keyup', { key: 'g' })
|
|
.trigger('mousedown', firstX, firstY, { which: 1 })
|
|
.trigger('mousemove', lastX, lastY)
|
|
.trigger('mouseup', lastX, lastY)
|
|
.trigger('keydown', { key: 'g' })
|
|
.trigger('keyup', { key: 'g' });
|
|
});
|
|
|
|
Cypress.Commands.add('createPolygon', (createPolygonParams) => {
|
|
if (!createPolygonParams.reDraw) {
|
|
cy.get('.cvat-draw-polygon-control').click();
|
|
cy.switchLabel(createPolygonParams.labelName, 'polygon');
|
|
cy.contains('Draw new polygon')
|
|
.parents('.cvat-draw-shape-popover-content')
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').then(($labelValue) => {
|
|
selectedValueGlobal = $labelValue.text();
|
|
});
|
|
if (createPolygonParams.numberOfPoints) {
|
|
createPolygonParams.complete = false;
|
|
cy.get('.ant-input-number-input').clear().type(createPolygonParams.numberOfPoints);
|
|
}
|
|
cy.get('button').contains(createPolygonParams.type).click({ force: true });
|
|
});
|
|
}
|
|
createPolygonParams.pointsMap.forEach((element) => {
|
|
cy.get('.cvat-canvas-container').click(element.x, element.y);
|
|
});
|
|
if (createPolygonParams.complete) {
|
|
cy.get('.cvat-canvas-container').trigger('keydown', { key: 'n' }).trigger('keyup', { key: 'n' });
|
|
}
|
|
cy.checkObjectParameters(createPolygonParams, 'POLYGON');
|
|
});
|
|
|
|
Cypress.Commands.add('openSettings', () => {
|
|
cy.get('.cvat-right-header').find('.cvat-header-menu-dropdown').trigger('mouseover', { which: 1 });
|
|
cy.get('.anticon-setting').click();
|
|
cy.get('.cvat-settings-modal').should('be.visible');
|
|
});
|
|
|
|
Cypress.Commands.add('closeSettings', () => {
|
|
cy.get('.cvat-settings-modal').within(() => {
|
|
cy.contains('button', 'Close').click();
|
|
});
|
|
cy.get('.cvat-settings-modal').should('not.be.visible');
|
|
});
|
|
|
|
Cypress.Commands.add('changeWorkspace', (mode, labelName) => {
|
|
cy.get('.cvat-workspace-selector').click();
|
|
cy.get('.cvat-workspace-selector-dropdown').within(() => {
|
|
cy.get(`.ant-select-item-option[title="${mode}"]`).click();
|
|
});
|
|
|
|
cy.get('.cvat-workspace-selector').should('contain.text', mode);
|
|
cy.changeLabelAAM(labelName);
|
|
});
|
|
|
|
Cypress.Commands.add('changeLabelAAM', (labelName) => {
|
|
cy.get('.cvat-workspace-selector').then((value) => {
|
|
const cvatWorkspaceSelectorValue = value.text();
|
|
if (cvatWorkspaceSelectorValue.includes('Attribute annotation')) {
|
|
cy.get('.cvat-attribute-annotation-sidebar-basics-editor').within(() => {
|
|
cy.get('.ant-select-selector').click();
|
|
});
|
|
cy.get('.ant-select-dropdown')
|
|
.not('.ant-select-dropdown-hidden')
|
|
.within(() => {
|
|
cy.get(`.ant-select-item-option[title="${labelName}"]`).click();
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('createCuboid', (createCuboidParams) => {
|
|
cy.get('.cvat-draw-cuboid-control').click();
|
|
cy.switchLabel(createCuboidParams.labelName, 'cuboid');
|
|
cy.contains('Draw new cuboid')
|
|
.parents('.cvat-draw-shape-popover-content')
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').then(($labelValue) => {
|
|
selectedValueGlobal = $labelValue.text();
|
|
});
|
|
cy.contains(createCuboidParams.points).click();
|
|
cy.get('button').contains(createCuboidParams.type).click({ force: true });
|
|
});
|
|
cy.get('.cvat-canvas-container').click(createCuboidParams.firstX, createCuboidParams.firstY);
|
|
cy.get('.cvat-canvas-container').click(createCuboidParams.secondX, createCuboidParams.secondY);
|
|
if (createCuboidParams.points === 'By 4 Points') {
|
|
cy.get('.cvat-canvas-container').click(createCuboidParams.thirdX, createCuboidParams.thirdY);
|
|
cy.get('.cvat-canvas-container').click(createCuboidParams.fourthX, createCuboidParams.fourthY);
|
|
}
|
|
cy.checkObjectParameters(createCuboidParams, 'CUBOID');
|
|
});
|
|
|
|
Cypress.Commands.add('updateAttributes', (multiAttrParams) => {
|
|
let cvatAttributeInputsWrapperId = [];
|
|
cy.get('.cvat-new-attribute-button').click();
|
|
cy.document().then((doc) => {
|
|
const cvatAttributeInputsWrapperList = Array.from(doc.querySelectorAll('.cvat-attribute-inputs-wrapper'));
|
|
for (let i = 0; i < cvatAttributeInputsWrapperList.length; i++) {
|
|
cvatAttributeInputsWrapperId.push(cvatAttributeInputsWrapperList[i].getAttribute('cvat-attribute-id'));
|
|
}
|
|
|
|
const minId = Math.min(...cvatAttributeInputsWrapperId);
|
|
|
|
cy.get(`[cvat-attribute-id="${minId}"]`).within(() => {
|
|
cy.get('.cvat-attribute-name-input').type(multiAttrParams.additionalAttrName);
|
|
cy.get('.cvat-attribute-type-input').click();
|
|
});
|
|
cy.get('.ant-select-dropdown')
|
|
.not('.ant-select-dropdown-hidden')
|
|
.within(() => {
|
|
cy.get(`.ant-select-item-option[title="${multiAttrParams.typeAttribute}"]`).click();
|
|
});
|
|
|
|
if (multiAttrParams.typeAttribute === 'Text' || multiAttrParams.typeAttribute === 'Number') {
|
|
cy.get(`[cvat-attribute-id="${minId}"]`).within(() => {
|
|
cy.get('.cvat-attribute-values-input').type(multiAttrParams.additionalValue);
|
|
});
|
|
} else if (multiAttrParams.typeAttribute === 'Radio') {
|
|
cy.get(`[cvat-attribute-id="${minId}"]`).within(() => {
|
|
cy.get('.cvat-attribute-values-input').type(`${multiAttrParams.additionalValue}{Enter}`);
|
|
});
|
|
} else if (multiAttrParams.typeAttribute === 'Checkbox') {
|
|
cy.get(`[cvat-attribute-id="${minId}"]`).within(() => {
|
|
cy.get('.cvat-attribute-values-input').click();
|
|
});
|
|
cy.get('.ant-select-dropdown')
|
|
.not('.ant-select-dropdown-hidden')
|
|
.within(() => {
|
|
cy.get(`.ant-select-item-option[title="${multiAttrParams.additionalValue}"]`).click();
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('createPolyline', (createPolylineParams) => {
|
|
cy.get('.cvat-draw-polyline-control').click();
|
|
cy.switchLabel(createPolylineParams.labelName, 'polyline');
|
|
cy.contains('Draw new polyline')
|
|
.parents('.cvat-draw-shape-popover-content')
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item').then(($labelValue) => {
|
|
selectedValueGlobal = $labelValue.text();
|
|
});
|
|
if (createPolylineParams.numberOfPoints) {
|
|
createPolylineParams.complete = false;
|
|
cy.get('.ant-input-number-input').clear().type(createPolylineParams.numberOfPoints);
|
|
}
|
|
cy.get('button').contains(createPolylineParams.type).click({ force: true });
|
|
});
|
|
createPolylineParams.pointsMap.forEach((element) => {
|
|
cy.get('.cvat-canvas-container').click(element.x, element.y);
|
|
});
|
|
if (createPolylineParams.complete) {
|
|
cy.get('.cvat-canvas-container').trigger('keydown', { key: 'n' }).trigger('keyup', { key: 'n' });
|
|
}
|
|
cy.checkObjectParameters(createPolylineParams, 'POLYLINE');
|
|
});
|
|
|
|
Cypress.Commands.add('getTaskID', (taskName) => {
|
|
cy.contains('strong', taskName)
|
|
.parents('.cvat-tasks-list-item')
|
|
.within(() => {
|
|
cy.get('span')
|
|
.invoke('text')
|
|
.then((text) => {
|
|
return String(text.match(/^#\d+\:/g)).replace(/[^\d]/g, '');
|
|
});
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('deleteTask', (taskName, taskID) => {
|
|
cy.contains('strong', taskName).parents('.cvat-tasks-list-item').find('.cvat-menu-icon').trigger('mouseover');
|
|
cy.get('.cvat-actions-menu').contains('Delete').click();
|
|
cy.get('.ant-modal-content')
|
|
.should('contain', `The task ${taskID} will be deleted`)
|
|
.within(() => {
|
|
cy.contains('button', 'Delete').click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('advancedConfiguration', (advancedConfigurationParams) => {
|
|
cy.contains('Advanced configuration').click();
|
|
if (advancedConfigurationParams.multiJobs) {
|
|
cy.get('#segmentSize').type(advancedConfigurationParams.segmentSize);
|
|
}
|
|
if (advancedConfigurationParams.sssFrame) {
|
|
cy.get('#startFrame').type(advancedConfigurationParams.startFrame);
|
|
cy.get('#stopFrame').type(advancedConfigurationParams.stopFrame);
|
|
cy.get('#frameStep').type(advancedConfigurationParams.frameStep);
|
|
}
|
|
if (advancedConfigurationParams.chunkSize) {
|
|
cy.get('#dataChunkSize').type(advancedConfigurationParams.chunkSize);
|
|
}
|
|
});
|
|
|
|
Cypress.Commands.add('removeAnnotations', () => {
|
|
cy.contains('.cvat-annotation-header-button', 'Menu').click();
|
|
cy.get('.cvat-annotation-menu').within(() => {
|
|
cy.contains('Remove annotations').click();
|
|
});
|
|
cy.get('.cvat-modal-confirm-remove-annotation').within(() => {
|
|
cy.contains('button', 'Delete').click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('goToTaskList', () => {
|
|
cy.get('a[value="tasks"]').click();
|
|
cy.url().should('include', '/tasks');
|
|
});
|
|
|
|
Cypress.Commands.add('changeColorViaBadge', (labelColor) => {
|
|
cy.get('.cvat-label-color-picker')
|
|
.not('.ant-popover-hidden')
|
|
.within(() => {
|
|
cy.contains('hex').prev().clear().type(labelColor);
|
|
cy.contains('button', 'Ok').click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('collectLabelsName', () => {
|
|
let listCvatConstructorViewerItemText = [];
|
|
cy.get('.cvat-constructor-viewer').should('exist');
|
|
cy.document().then((doc) => {
|
|
const labels = Array.from(doc.querySelectorAll('.cvat-constructor-viewer-item'));
|
|
for (let i = 0; i < labels.length; i++) {
|
|
listCvatConstructorViewerItemText.push(labels[i].textContent);
|
|
}
|
|
return listCvatConstructorViewerItemText;
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('addNewLabel', (newLabelName, additionalAttrs, labelColor) => {
|
|
cy.collectLabelsName().then((labelsNames) => {
|
|
if (labelsNames.indexOf(newLabelName) === -1) {
|
|
cy.contains('button', 'Add label').click();
|
|
cy.get('[placeholder="Label name"]').type(newLabelName);
|
|
if (labelColor) {
|
|
cy.get('.cvat-change-task-label-color-badge').click();
|
|
cy.changeColorViaBadge(labelColor);
|
|
}
|
|
if (additionalAttrs) {
|
|
for (let i = 0; i < additionalAttrs.length; i++) {
|
|
cy.updateAttributes(additionalAttrs[i]);
|
|
}
|
|
}
|
|
cy.contains('button', 'Done').click();
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('addNewLabelViaContinueButton', (additionalLabels) => {
|
|
cy.collectLabelsName().then((labelsNames) => {
|
|
if (additionalLabels.some((el) => labelsNames.indexOf(el) === -1)) {
|
|
cy.contains('button', 'Add label').click();
|
|
for (let j = 0; j < additionalLabels.length; j++) {
|
|
cy.get('[placeholder="Label name"]').type(additionalLabels[j]);
|
|
if (j !== additionalLabels.length - 1) {
|
|
cy.contains('button', 'Continue').click();
|
|
} else {
|
|
cy.contains('button', 'Done').click();
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('createTag', (labelName) => {
|
|
cy.get('.cvat-setup-tag-control').click();
|
|
cy.switchLabel(labelName, 'tag');
|
|
cy.contains('Setup tag')
|
|
.parents('.cvat-setup-tag-popover-content')
|
|
.within(() => {
|
|
cy.get('button').click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('sidebarItemSortBy', (sortBy) => {
|
|
cy.get('.cvat-objects-sidebar-ordering-selector').click();
|
|
cy.get('.cvat-objects-sidebar-ordering-dropdown').within(() => {
|
|
cy.get(`.ant-select-item-option[title="${sortBy}"]`).click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('goToRegisterPage', () => {
|
|
cy.get('a[href="/auth/register"]').click();
|
|
cy.url().should('include', '/auth/register');
|
|
});
|
|
|
|
Cypress.Commands.add('getScaleValue', () => {
|
|
cy.get('#cvat_canvas_background')
|
|
.should('have.attr', 'style')
|
|
.then(($styles) => {
|
|
return Number($styles.match(/scale\((\d\.\d+)\)/m)[1]);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('writeFilterValue', (clear, filterValue) => {
|
|
if (clear) {
|
|
cy.get('.cvat-annotations-filters-input').within(() => {
|
|
cy.get('.ant-select-selection-item-remove').click();
|
|
});
|
|
}
|
|
cy.get('.cvat-annotations-filters-input')
|
|
.type(`${filterValue}{Enter}`)
|
|
.within(() => {
|
|
cy.get('.ant-select-selection-item-content').should('have.text', filterValue);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('selectFilterValue', (clear, filterValue) => {
|
|
if (clear) {
|
|
cy.get('.cvat-annotations-filters-input').within(() => {
|
|
cy.get('.ant-select-selection-item-remove').click();
|
|
});
|
|
}
|
|
cy.get('body').click();
|
|
cy.get('.cvat-annotations-filters-input').click();
|
|
cy.contains('.cvat-annotations-filters-input-history-element', filterValue).scrollIntoView().click();
|
|
cy.get('body').click();
|
|
cy.get('.cvat-annotations-filters-input').within(() => {
|
|
cy.contains('.ant-select-selection-item-content', filterValue);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('goCheckFrameNumber', (frameNum) => {
|
|
cy.get('.cvat-player-frame-selector').within(() => {
|
|
cy.get('input[role="spinbutton"]')
|
|
.clear({ force: true })
|
|
.type(`${frameNum}{Enter}`, { force: true })
|
|
.should('have.value', frameNum);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('checkFrameNum', (frameNum) => {
|
|
cy.get('.cvat-player-frame-selector').within(() => {
|
|
cy.get('input[role="spinbutton"]').should('have.value', frameNum);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('goToNextFrame', (expectedFrameNum) => {
|
|
cy.get('.cvat-player-next-button').click();
|
|
cy.checkFrameNum(expectedFrameNum);
|
|
});
|
|
|
|
Cypress.Commands.add('goToPreviousFrame', (expectedFrameNum) => {
|
|
cy.get('.cvat-player-previous-button').click();
|
|
cy.checkFrameNum(expectedFrameNum);
|
|
});
|
|
|
|
Cypress.Commands.add('interactMenu', (choice) => {
|
|
cy.contains('.cvat-annotation-header-button', 'Menu').click();
|
|
cy.get('.cvat-annotation-menu').within(() => {
|
|
cy.contains(new RegExp(`^${choice}$`, 'g')).click();
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('closeNotification', (className) => {
|
|
cy.get(className).find('span[aria-label="close"]').click();
|
|
cy.get(className).should('not.exist');
|
|
});
|
|
|
|
Cypress.Commands.add('getObjectIdNumberByLabelName', (labelName) => {
|
|
cy.document().then((doc) => {
|
|
const stateItemLabelSelectorList = Array.from(
|
|
doc.querySelectorAll('.cvat-objects-sidebar-state-item-label-selector'),
|
|
);
|
|
for (let i = 0; i < stateItemLabelSelectorList.length; i++) {
|
|
if (stateItemLabelSelectorList[i].textContent === labelName) {
|
|
cy.get(stateItemLabelSelectorList[i])
|
|
.parents('.cvat-objects-sidebar-state-item')
|
|
.should('have.attr', 'id')
|
|
.then((id) => {
|
|
return Number(id.match(/\d+$/));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('closeModalUnsupportedPlatform', () => {
|
|
if (Cypress.browser.family !== 'chromium') {
|
|
cy.get('.cvat-modal-unsupported-platform-warning').within(() => {
|
|
cy.contains('button', 'OK').click();
|
|
});
|
|
}
|
|
});
|