Skip to content

Commit

Permalink
feat(target): add additional selector for 'ship it' (#737)
Browse files Browse the repository at this point in the history
  • Loading branch information
mven committed Nov 10, 2020
1 parent ff79d9e commit ab1fddf
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/store/model/target.ts
Expand Up @@ -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"]'
}
Expand Down

0 comments on commit ab1fddf

Please sign in to comment.