saleor-dashboard/cypress/elements/channels/available-channels-form.js
wojteknowacki 192be719fe
fixing tests: 2505 2506 - should update product to be visible or not in listings (#3648)
* fix tests should update product to be visible in listings, should update product to not be visible in listings

* lock conflict fixes

* update tests: products published or not to new implementation
2023-05-15 14:03:19 +02:00

10 lines
512 B
JavaScript

export const AVAILABLE_CHANNELS_FORM = {
manageChannelsButton: "[data-test-id='channels-availability-manage-button']",
assignedChannels: "[data-test-id='expand-icon']",
publishedRadioButtons: "[name*='isPublished'] > ",
availableForPurchaseRadioButtons: "[name*='isAvailableForPurchase']",
radioButtonsValueTrue: "[value='true']",
radioButtonsValueFalse: "[value='false']",
visibleInListingsButton: "[id*='visibleInListings']",
availableChannel: "[data-test-id*='channel-availability-item']",
};