Skip to content

Commit

Permalink
feat(store): add captcha check to saturn and mediamarkt (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
styler2go committed Nov 21, 2020
1 parent 53739e0 commit 2d01cfd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/store/model/mediamarkt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import {Store} from './store';

export const Mediamarkt: Store = {
labels: {
captcha: {
container: 'body',
text: ['Das ging uns leider zu schnell.']
},
maxPrice: {
container: 'span[font-family="price"]',
euroFormat: false
Expand Down
4 changes: 4 additions & 0 deletions src/store/model/saturn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import {Store} from './store';

export const Saturn: Store = {
labels: {
captcha: {
container: 'body',
text: ['Das ging uns leider zu schnell.']
},
maxPrice: {
container: 'span[font-family="price"]',
euroFormat: false // Note: Saturn uses non-euroFromat as price seperator
Expand Down

0 comments on commit 2d01cfd

Please sign in to comment.