feat(ps5): add console and digital edition (#709)

This commit is contained in:
Michael Vendivel
2020-11-06 15:42:05 -06:00
committed by GitHub
parent 0a680e977b
commit 42ef7cfdce
9 changed files with 118 additions and 7 deletions
+28
View File
@@ -0,0 +1,28 @@
import {Store} from './store';
export const Target: Store = {
labels: {
inStock: {
container: '[data-test="preorderButton"]',
text: ['Preorder now']
},
maxPrice: {
container: '[data-test="product-price"]'
}
},
links: [
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url: 'https://www.target.com/p/playstation-5-console/-/A-81114595'
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url: 'https://www.target.com/p/playstation-5-digital-edition-console/-/A-81114596'
}
],
name: 'target'
};