diff --git a/src/store/model/newegg-ca.ts b/src/store/model/newegg-ca.ts index 62f6996..872c062 100644 --- a/src/store/model/newegg-ca.ts +++ b/src/store/model/newegg-ca.ts @@ -7,11 +7,11 @@ export const NeweggCa: Store = { text: ['are you a human?'] }, inStock: { - container: '#landingpage-cart .btn-primary span', + container: 'div#ProductBuy .btn-primary', text: ['add to cart'] }, maxPrice: { - container: '#landingpage-price > div > div > ul > li.price-current > strong', + container: 'div#app div.product-price > ul > li.price-current > strong', euroFormat: false } }, diff --git a/src/store/model/newegg.ts b/src/store/model/newegg.ts index b49f591..2413032 100644 --- a/src/store/model/newegg.ts +++ b/src/store/model/newegg.ts @@ -7,11 +7,11 @@ export const Newegg: Store = { text: ['are you a human?'] }, inStock: { - container: '#landingpage-cart .btn-primary span', + container: 'div#ProductBuy .btn-primary', text: ['add to cart'] }, maxPrice: { - container: '#landingpage-price > div > div > ul > li.price-current > strong', + container: 'div#app div.product-price > ul > li.price-current > strong', euroFormat: false } },