mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 12:17:37 +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
294 lines
7.0 KiB
TypeScript
294 lines
7.0 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const Mediamarkt: Store = {
|
|
backoffStatusCodes: [403, 429, 503],
|
|
currency: '€',
|
|
labels: {
|
|
captcha: {
|
|
container: 'p',
|
|
text: ['Das ging uns leider zu schnell.'],
|
|
},
|
|
maxPrice: {
|
|
container: 'span[font-family="price"]',
|
|
euroFormat: false,
|
|
},
|
|
outOfStock: [
|
|
{
|
|
container: '#root',
|
|
text: ['Dieser Artikel ist aktuell nicht verfügbar.'],
|
|
},
|
|
{
|
|
container: '#root',
|
|
text: ['Leider keine Lieferung möglich'],
|
|
},
|
|
{
|
|
container: '#root',
|
|
text: ['Nicht verfügbar'],
|
|
},
|
|
{
|
|
container: '#root',
|
|
text: ['Dieser Artikel ist dauerhaft ausverkauft'],
|
|
},
|
|
{
|
|
container: '#root',
|
|
text: ['Dieser Artikel ist bald wieder für Sie verfügbar'],
|
|
},
|
|
],
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url: 'https://www.mediamarkt.de/de/product/-2641856.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'dual',
|
|
series: '3060ti',
|
|
url: 'https://www.mediamarkt.de/de/product/-2701239.html',
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'twin edge',
|
|
series: '3060ti',
|
|
url: 'https://www.mediamarkt.de/de/product/-2704436.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691243.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691244.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'dual',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691245.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'dual oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691246.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691247.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'gaming oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691439.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'eagle oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691444.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'aorus master',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2696163.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'vision oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2696164.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'gaming x trio',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2694894.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 3x oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2694896.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 2x oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2694898.html',
|
|
},
|
|
{
|
|
brand: 'inno3d',
|
|
model: 'ichill x3',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2695942.html',
|
|
},
|
|
{
|
|
brand: 'inno3d',
|
|
model: 'ichill x4',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2695941.html',
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'twin edge',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691365.html',
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'twin edge oc',
|
|
series: '3070',
|
|
url: 'https://www.mediamarkt.de/de/product/-2695671.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681869.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix oc',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681871.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681859.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681861.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'eagle oc',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683942.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'gaming oc',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683937.html',
|
|
},
|
|
{
|
|
brand: 'inno3d',
|
|
model: 'ichill x3',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2684241.html',
|
|
},
|
|
{
|
|
brand: 'inno3d',
|
|
model: 'ichill x4',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2684238.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'gaming x trio',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683227.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 3x oc',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683229.html',
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'trinity',
|
|
series: '3080',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683243.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681863.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix oc',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681866.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681855.html',
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2681857.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'aorus master',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691441.html',
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'aorus xtreme',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2691440.html',
|
|
},
|
|
{
|
|
brand: 'inno3d',
|
|
model: 'ichill x4',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2684235.html',
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'gaming x trio',
|
|
series: '3090',
|
|
url: 'https://www.mediamarkt.de/de/product/-2683226.html',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url: 'https://www.mediamarkt.de/de/product/-2661938.html',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url: 'https://www.mediamarkt.de/de/product/-2661939.html',
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series x',
|
|
series: 'xboxsx',
|
|
url: 'https://www.mediamarkt.de/de/product/-2677360.html',
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series s',
|
|
series: 'xboxss',
|
|
url: 'https://www.mediamarkt.de/de/product/-2677359.html',
|
|
},
|
|
],
|
|
name: 'mediamarkt',
|
|
};
|