forked from jef/streetmerchant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwalmart.ts
More file actions
90 lines (89 loc) · 2.24 KB
/
walmart.ts
File metadata and controls
90 lines (89 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import {Store} from './store';
export const Walmart: Store = {
currency: '$',
labels: {
inStock: {
container: '.button.spin-button.prod-ProductCTA--primary.button--primary',
text: ['add to cart'],
},
maxPrice: {
container: 'span[class*="price-characteristic"]',
},
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://www.walmart.com/ip/Keurig-K-compact-Brewer-Black-Coffee-Maker/806217614',
},
{
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/Sony-PlayStation-5-Digital-Edition/493824815',
},
{
brand: 'microsoft',
model: 'xbox series x',
series: 'xboxsx',
url: 'https://www.walmart.com/ip/Xbox-Series-X/443574645',
},
{
brand: 'microsoft',
model: 'xbox series s',
series: 'xboxss',
url: 'https://www.walmart.com/ip/Xbox-Series-S/606518560',
},
{
brand: 'corsair',
model: '750 platinum',
series: 'sf',
url: 'https://www.walmart.com/ip/SF750-Power-Supply/197046151',
},
{
brand: 'corsair',
model: '600 platinum',
series: 'sf',
url: 'https://www.walmart.com/ip/Corsair-SF-Series-600W-80-Platinum-Power-Supply/250717047',
},
{
brand: 'amd',
model: '5900x',
series: 'ryzen5900',
url: 'https://www.walmart.com/ip/AMD-Ryzen-9-5900X-12-core-24-thread-Desktop-Processor/647899167',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3060ti',
url: 'https://www.walmart.com/ip/912221235',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3070',
url: 'https://www.walmart.com/ip/804934537',
},
{
brand: 'nintendo',
model: 'switch 2',
series: 'switch2',
url: 'https://www.walmart.com/ip/15949610846',
},
{
brand: 'nintendo',
model: 'switch 2 bundle',
series: 'switch2',
url: 'https://www.walmart.com/ip/15928868255',
},
],
name: 'walmart',
country: 'US',
};