mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 05:17:35 +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
48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const Argos: Store = {
|
|
currency: '£',
|
|
labels: {
|
|
inStock: {
|
|
container: 'button[data-test="add-to-trolley-button-button"',
|
|
text: ['to trolley'],
|
|
},
|
|
maxPrice: {
|
|
container: 'li[itemprop="price"]',
|
|
},
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url: 'https://www.argos.co.uk/product/5718469',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url: 'https://www.argos.co.uk/product/8349000',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url: 'https://www.argos.co.uk/product/8349024',
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series x',
|
|
series: 'xboxsx',
|
|
url: 'https://www.argos.co.uk/product/8448262',
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series s',
|
|
series: 'xboxss',
|
|
url: 'https://www.argos.co.uk/product/8448248',
|
|
},
|
|
],
|
|
name: 'argos',
|
|
};
|