saleor-dashboard/cypress/support/pages/shippingMethodPage.js
wojteknowacki bf532939e2
Test navigation refactor (#3294)
* naviagtion aka permissions refactor
2023-03-09 09:18:07 +01:00

210 lines
5.4 KiB
JavaScript

import { BUTTON_SELECTORS } from "../../elements/shared/button-selectors";
import { SHARED_ELEMENTS } from "../../elements/shared/sharedElements";
import { SHIPPING_RATE_DETAILS } from "../../elements/shipping/shipping-rate-details";
import { SHIPPING_ZONE_DETAILS } from "../../elements/shipping/shipping-zone-details";
import { SHIPPING_ZONES_LIST_SELECTORS } from "../../elements/shipping/shipping-zones-list";
export function createShippingZone(
shippingName,
warehouseName,
country,
channelName,
) {
cy.get(SHIPPING_ZONES_LIST_SELECTORS.addShippingZone).click();
fillUpShippingZoneData({
shippingName,
warehouseName,
country,
channelName,
});
}
export function fillUpShippingZoneData({
shippingName,
warehouseName,
country,
channelName,
}) {
cy.get(SHIPPING_ZONE_DETAILS.nameInput)
.clearAndType(shippingName)
.get(SHIPPING_ZONE_DETAILS.descriptionInput)
.clearAndType(shippingName)
.get(BUTTON_SELECTORS.confirm)
.click()
.confirmationMessageShouldAppear()
.get(SHIPPING_ZONE_DETAILS.warehouseSelector)
.click()
.get(SHIPPING_ZONE_DETAILS.warehouseSelector)
.type(warehouseName)
.get(SHIPPING_ZONE_DETAILS.autocompleteContentDialog);
cy.contains(SHIPPING_ZONE_DETAILS.option, warehouseName)
.click({ force: true })
.get(SHIPPING_ZONE_DETAILS.warehouseSelector)
.click()
.get(SHIPPING_ZONE_DETAILS.channelSelector)
.click()
.get(SHIPPING_ZONE_DETAILS.option)
.contains(channelName)
.click()
.get(SHIPPING_ZONE_DETAILS.assignCountryButton)
.click()
.get(SHIPPING_ZONE_DETAILS.searchInput)
.type(country);
return cy
.contains(SHIPPING_ZONE_DETAILS.tableRow, country)
.find(BUTTON_SELECTORS.checkbox)
.click()
.get(SHIPPING_ZONE_DETAILS.submitAssignCountry)
.click()
.get(BUTTON_SELECTORS.confirm)
.click()
.confirmationMessageShouldDisappear()
.addAliasToGraphRequest("UpdateShippingZone")
.reload();
}
export function changeWeightUnit(weightUnit) {
cy.fillBaseSelect(SHIPPING_ZONES_LIST_SELECTORS.unitSelect, weightUnit)
.addAliasToGraphRequest("UpdateDefaultWeightUnit")
.get(SHIPPING_ZONES_LIST_SELECTORS.saveUnit)
.click()
.confirmationMessageShouldAppear()
.waitForRequestAndCheckIfNoErrors("@UpdateDefaultWeightUnit")
.wait(5000);
}
export function createShippingRate({
rateName,
price,
rateOption,
weightLimits,
deliveryTime,
priceLimits,
}) {
enterAndFillUpShippingRate({
rateName,
price,
rateOption,
weightLimits,
deliveryTime,
priceLimits,
});
return saveRate();
}
export function enterAndFillUpShippingRate({
rateName,
price,
rateOption,
weightLimits,
priceLimits,
deliveryTime,
}) {
cy.get(rateOption).click();
fillUpShippingRate({
rateName,
price,
weightLimits,
priceLimits,
deliveryTime,
});
}
export function fillUpShippingRate({
rateName,
price,
weightLimits,
priceLimits,
deliveryTime,
}) {
cy.waitForProgressBarToNotBeVisible()
.get(SHARED_ELEMENTS.richTextEditor.empty)
.should("exist")
.get(SHIPPING_RATE_DETAILS.inputName)
.clearAndType(rateName);
if (deliveryTime) {
fillUpDeliveryTime(deliveryTime);
}
if (weightLimits) {
fillUpLimits(weightLimits);
}
if (priceLimits) {
fillUpLimits(priceLimits);
}
cy.get(SHIPPING_RATE_DETAILS.priceInput).each($priceInput => {
cy.wrap($priceInput)
.clear()
.get(SHARED_ELEMENTS.pageHeader)
.click()
.wrap($priceInput)
.clearAndType(price);
});
}
export function createRateWithPostalCode({
rateName,
price,
rateOption = rateOptions.PRICE_OPTION,
minPostalCode,
maxPostalCode,
postalCodeOption,
}) {
enterAndFillUpShippingRate({ rateName, price, rateOption });
cy.get(postalCodeOption)
.click()
.get(SHIPPING_RATE_DETAILS.addPostalCodesButton)
.click()
.get(SHIPPING_RATE_DETAILS.postalCodesForm.min)
.type(minPostalCode)
.get(SHIPPING_RATE_DETAILS.postalCodesForm.max)
.type(maxPostalCode)
.get(BUTTON_SELECTORS.submit)
.click();
return saveRate();
}
export function saveRate() {
return cy
.addAliasToGraphRequest("ShippingMethodChannelListingUpdate")
.addAliasToGraphRequest("ShippingZone")
.get(BUTTON_SELECTORS.confirm)
.click()
.confirmationMessageShouldAppear()
.waitForRequestAndCheckIfNoErrors(`@ShippingMethodChannelListingUpdate`)
.waitForRequestAndCheckIfNoErrors(`@ShippingZone`)
.its("response.body.data.shippingZone");
}
export function saveRateAfterUpdate() {
return cy
.addAliasToGraphRequest("ShippingMethodChannelListingUpdate")
.get(BUTTON_SELECTORS.confirm)
.click()
.confirmationMessageShouldAppear()
.waitForRequestAndCheckIfNoErrors(`@ShippingMethodChannelListingUpdate`);
}
export function fillUpLimits({ max, min }) {
cy.get(SHIPPING_RATE_DETAILS.minValueInput)
.type(min)
.get(SHIPPING_RATE_DETAILS.maxValueInput)
.type(max);
}
export function fillUpDeliveryTime({ min, max }) {
cy.get(SHIPPING_RATE_DETAILS.minDeliveryTimeInput)
.clearAndType(min)
.get(SHIPPING_RATE_DETAILS.maxDeliveryTimeInput)
.clearAndType(max);
}
export const rateOptions = {
PRICE_OPTION: SHIPPING_ZONE_DETAILS.addPriceRateButton,
WEIGHT_OPTION: SHIPPING_ZONE_DETAILS.addWeightRateButton,
};
export const postalCodesOptions = {
INCLUDE_OPTION: SHIPPING_RATE_DETAILS.includePostalCodesCheckbox,
EXCLUDE_OPTION: SHIPPING_RATE_DETAILS.excludePostalCodesCheckbox,
};