feat(target): add additional selector for 'ship it' (#737)

This commit is contained in:
Michael Vendivel
2020-11-10 08:00:06 -06:00
committed by GitHub
parent ff79d9e70d
commit ab1fddf20c
+10 -4
View File
@@ -2,10 +2,16 @@ import {Store} from './store';
export const Target: Store = {
labels: {
inStock: {
container: '[data-test="preorderButton"]',
text: ['Preorder now']
},
inStock: [
{
container: '[data-test="preorderButton"]',
text: ['Preorder now']
},
{
container: '[data-test="shipItButton"]',
text: ['Ship it']
}
],
maxPrice: {
container: '[data-test="product-price"]'
}