fix(newegg): false positives (all stores) (#1714)

This commit is contained in:
wofnull
2021-01-17 14:22:10 +01:00
committed by GitHub
parent 724f6b19a1
commit 3f191bbd00
3 changed files with 33 additions and 3 deletions
+10
View File
@@ -16,7 +16,17 @@ export const NeweggCa: Store = {
container:
'div#app div.product-price > ul > li.price-current > strong',
euroFormat: false
},
outOfStock: [
{
container: '.product-inventory',
text: [' out of stock.']
},
{
container: '.product-flag',
text: ['out of stock ']
}
]
},
links: [
{
+10
View File
@@ -20,7 +20,17 @@ export const NeweggSg: Store = {
],
maxPrice: {
container: '.price-current'
},
outOfStock: [
{
container: '.product-inventory',
text: [' out of stock.']
},
{
container: '.product-flag',
text: ['out of stock ']
}
]
},
links: [
{
+10
View File
@@ -20,7 +20,17 @@ export const Newegg: Store = {
],
maxPrice: {
container: '.price-current'
},
outOfStock: [
{
container: '.product-inventory',
text: [' out of stock.']
},
{
container: '.product-flag',
text: ['out of stock ']
}
]
},
links: [
{