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 Walmart: Store = {
labels: {
inStock: {
container: '#ProductPrimaryCTA-cta_add_to_cart_button',
text: ['Add to cart']
},
maxPrice: {
container: 'span[class*="price-characteristic"]'
}
},
links: [
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url: 'https://www.walmart.com/ip/PlayStation5-Console/363472942'
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url: 'https://www.walmart.com/ip/PlayStation5-Console/363472942'
}
],
name: 'walmart'
};