2020-11-05 20:57:04 +00:00
# Unreleased
2020-12-01 23:19:10 +00:00
## Fixed
- Missing `config` package dependency
2020-11-27 21:49:20 +00:00
## Added
2020-12-08 22:50:00 +00:00
2020-12-22 13:59:16 +00:00
- `shopper.gotoMyAccount()` go to the /my-account/ page
2020-11-27 21:49:20 +00:00
- `clickFilter()` util helper method that clicks on a list page filter
- `moveAllItemsToTrash()` util helper method that checks every item in a list page and moves them to the trash
- `createSimpleOrder( status )` component which accepts an order status string and creates a basic order with that status
2020-12-11 04:27:04 +00:00
- `addProductToOrder( orderId, productName )` component which adds the provided productName to the passed in orderId
2020-12-16 22:00:13 +00:00
- `createCoupon( couponAmount )` component which accepts a coupon amount string (it defaults to 5) and creates a basic coupon. Returns the generated coupon code.
2020-12-29 19:56:55 +00:00
- `evalAndClick( selector )` use Puppeteer page.$eval to select and click and element.
2020-12-11 04:27:04 +00:00
## Changes
2020-12-22 13:59:16 +00:00
- Deprecated `StoreOwnerFlow` , `CustomerFlow` in favour of `merchant` ,`shopper`
2020-12-11 04:27:04 +00:00
- `createSimpleOrder( status )` returns the ID of the order that was created
2021-01-13 18:34:46 +00:00
- Updated `createCoupon( couponAmount )` component by adding a new parameter `discountType` which allows you to use any coupon discount type in tests
2020-11-27 21:49:20 +00:00
2020-11-05 20:57:04 +00:00
# 0.1.1
- Initial/beta release