2021-09-27 10:04:21 +00:00
|
|
|
import { SEO_FORM } from "../../../elements/shared/seo/seo-form-selectors";
|
2022-10-20 05:36:49 +00:00
|
|
|
|
2021-04-01 12:33:36 +00:00
|
|
|
export function editSeoSettings({ slug, title, description }) {
|
|
|
|
cy.get(SEO_FORM.editSeoSettings)
|
|
|
|
.click()
|
|
|
|
.get(SEO_FORM.slugInput)
|
2021-04-21 08:02:48 +00:00
|
|
|
.clearAndType(slug)
|
2021-04-01 12:33:36 +00:00
|
|
|
.get(SEO_FORM.titleInput)
|
2021-04-21 08:02:48 +00:00
|
|
|
.clearAndType(title)
|
2021-04-01 12:33:36 +00:00
|
|
|
.get(SEO_FORM.descriptionInput)
|
2021-04-21 08:02:48 +00:00
|
|
|
.clearAndType(description, { delay: 0 });
|
2021-04-01 12:33:36 +00:00
|
|
|
}
|