mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 16:57:34 +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
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const OfficeDepot: Store = {
|
|
currency: '$',
|
|
labels: {
|
|
captcha: {
|
|
container: 'body',
|
|
text: ['please verify you are a human'],
|
|
},
|
|
inStock: {
|
|
container: '#productPurchase',
|
|
text: ['add to cart'],
|
|
},
|
|
maxPrice: {
|
|
container: 'span[class^="price_column right"]',
|
|
euroFormat: false,
|
|
},
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.officedepot.com/a/products/4652239/EVGA-GeForce-RTX-2060-Graphic-Card/',
|
|
},
|
|
{
|
|
brand: 'pny',
|
|
model: 'xlr8 revel',
|
|
series: '3080',
|
|
url:
|
|
'https://www.officedepot.com/a/products/7189374/PNY-GeForce-RTX-3080-10GB-GDDR6X/',
|
|
},
|
|
{
|
|
brand: 'pny',
|
|
model: 'xlr8 revel',
|
|
series: '3080',
|
|
url:
|
|
'https://www.officedepot.com/a/products/7791294/PNY-GeForce-RTX-3080-10GB-GDDR6X/',
|
|
},
|
|
{
|
|
brand: 'pny',
|
|
model: 'dual fan',
|
|
series: '3070',
|
|
url:
|
|
'https://www.officedepot.com/a/products/1992758/PNY-GeForce-RTX-3070-8GB-GDDR6/',
|
|
},
|
|
],
|
|
name: 'officedepot',
|
|
};
|