Files
streetmerchant/src/store/model/otto.ts
T

67 lines
1.5 KiB
TypeScript

import {Store} from './store';
export const Otto: Store = {
labels: {
inStock: [
{
container:
'button.prd_ordering__button.p_btn150--1st.js_product_addToBasket',
text: ['In den Warenkorb']
}
],
maxPrice: {
container: '#normalPriceAmount',
euroFormat: true
},
outOfStock: {
container: 'div.p_message.p_message--hint > strong',
text: ['Deinen gewünschten Artikel können wir leider nicht mehr liefern']
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url:
'https://www.otto.de/p/playstation-5-medienfernbedienung-1170617135#variationId=1170617136'
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url:
'https://www.otto.de/p/playstation-5-1136008456/#variationId=1136008459'
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url:
'https://www.otto.de/p/playstation-5-1154028000#variationId=1154028001'
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url:
'https://www.otto.de/p/playstation-5-digital-edition-1161042793#variationId=1161042794'
},
{
brand: 'microsoft',
model: 'xbox series s',
series: 'xboxss',
url:
'https://www.otto.de/p/xbox-series-s-1229056876/#variationId=1229056877'
},
{
brand: 'microsoft',
model: 'xbox series x',
series: 'xboxsx',
url:
'https://www.otto.de/p/xbox-series-x-1229057353#variationId=1229057354'
}
],
name: 'otto'
};