mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +00:00
f87053cb02
feat: add browser opening to test:notification feat: add c8 and mocha for testing feat: update Docker and ci style: update editorconfig
131 lines
2.8 KiB
TypeScript
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',
|
|
};
|