Skip to content

Commit

Permalink
fix(store): italian store checks (#1212)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucarin91 committed Dec 8, 2020
1 parent b535b47 commit e3eb386
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/store/model/amazon-it.ts
Expand Up @@ -5,7 +5,9 @@ export const AmazonIt: Store = {
labels: {
captcha: {
container: 'body',
text: ['enter the characters you see below']
text: [
'Inserisci i caratteri visualizzati nello spazio sottostante'
]
},
inStock: {
container: '#desktop_buybox',
Expand Down
4 changes: 4 additions & 0 deletions src/store/model/eprice.ts
Expand Up @@ -9,6 +9,10 @@ export const Eprice: Store = {
maxPrice: {
container: '#PrezzoClasic span[class*="big"]',
euroFormat: true
},
outOfStock: {
container: '.dispo',
text: ['ESAURITO O FUORI PROD.']
}
},
links: [
Expand Down
4 changes: 4 additions & 0 deletions src/store/model/unieuro.ts
Expand Up @@ -2,6 +2,10 @@ import {Store} from './store';

export const Unieuro: Store = {
labels: {
captcha: {
container: 'body',
text: ['Too Many Requests.']
},
inStock: {
container: '.price-container',
text: ['Aggiungi al carrello']
Expand Down

0 comments on commit e3eb386

Please sign in to comment.