Files
streetmerchant/src/store/model/adorama.ts
T
Jef LeCompte f87053cb02 refactor: use gts instead of xo
feat: add browser opening to test:notification
feat: add c8 and mocha for testing
feat: update Docker and ci
style: update editorconfig
2021-01-17 15:21:53 -05:00

131 lines
2.8 KiB
TypeScript

import {Store} from './store';
export const Adorama: Store = {
currency: '$',
labels: {
captcha: {
container: 'body',
text: ['please verify you are a human'],
},
inStock: {
container: '.buy-section.purchase',
text: ['add to cart'],
},
maxPrice: {
container: '.your-price',
euroFormat: false,
},
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://www.adorama.com/ev08gp43067k.html',
},
{
brand: 'pny',
model: 'xlr8 revel',
series: '3080',
url: 'https://www.adorama.com/pnv301tfxmpb.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3080',
url: 'https://www.adorama.com/msig380gxt1.html',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3080',
url: 'https://www.adorama.com/ev10g53897kr.html',
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3080',
url: 'https://www.adorama.com/ev10g53885kr.html',
},
{
brand: 'evga',
model: 'ftw3',
series: '3080',
url: 'https://www.adorama.com/ev10g53895kr.html',
},
{
brand: 'evga',
model: 'xc3',
series: '3080',
url: 'https://www.adorama.com/ev10g53883kr.html',
},
{
brand: 'evga',
model: 'xc3 black',
series: '3080',
url: 'https://www.adorama.com/ev10g53881kr.html',
},
{
brand: 'msi',
model: 'ventus 3x oc',
series: '3080',
url: 'https://www.adorama.com/msig38v3x10c.html',
},
{
brand: 'pny',
model: 'xlr8 revel',
series: '3080',
url: 'https://www.adorama.com/png30801tfxb.html',
},
{
brand: 'asus',
model: 'strix oc',
series: '3080',
url: 'https://www.adorama.com/asrx3080o10g.html',
},
{
brand: 'asus',
model: 'tuf oc',
series: '3080',
url: 'https://www.adorama.com/astr3080o10g.html',
},
{
brand: 'asus',
model: 'tuf',
series: '3080',
url: 'https://www.adorama.com/astrx308010g.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3090',
url: 'https://www.adorama.com/msig390gxt24.html',
},
{
brand: 'msi',
model: 'ventus 3x oc',
series: '3090',
url: 'https://www.adorama.com/msig39v3x24c.html',
},
{
brand: 'asus',
model: 'tuf',
series: '3090',
url: 'https://www.adorama.com/asrtx309024g.html',
},
{
brand: 'asus',
model: 'tuf oc',
series: '3090',
url: 'https://www.adorama.com/ast3090o24g.html',
},
{
brand: 'asus',
model: 'strix oc',
series: '3090',
url: 'https://www.adorama.com/asrx3090o24g.html',
},
],
name: 'adorama',
};