saleor-dashboard/cypress/steps/catalog/seoSteps.js
Karolina Rakoczy 4013105844
Saleor 2697 tests for updating products (#1060)
* updating products

* updating products

* test for updating
2021-04-21 10:02:48 +02:00

11 lines
377 B
JavaScript

import { SEO_FORM } from "../../elements/shared/seo/seo-form-selectors";
export function editSeoSettings({ slug, title, description }) {
cy.get(SEO_FORM.editSeoSettings)
.click()
.get(SEO_FORM.slugInput)
.clearAndType(slug)
.get(SEO_FORM.titleInput)
.clearAndType(title)
.get(SEO_FORM.descriptionInput)
.clearAndType(description, { delay: 0 });
}