Skip to content

Commit

Permalink
fix(bestbuy-ca): update selectors to help false positives (#1278)
Browse files Browse the repository at this point in the history
Resolves #895
  • Loading branch information
dylf committed Dec 12, 2020
1 parent b6964b0 commit 0525119
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/store/model/bestbuy-ca.ts
Expand Up @@ -3,17 +3,13 @@ import {Store} from './store';
export const BestBuyCa: Store = {
currency: '$',
labels: {
inStock: {
container: '.addToCartContainer_2uzan',
text: ['add to cart']
},
maxPrice: {
container: '.pricingContainer_25k3c',
container: 'div[class*="pricingContainer"]',
euroFormat: false
},
outOfStock: {
container: '.shippingAvailability_2RMa1',
text: ['coming soon', 'sold out']
container: '.addToCartButton:disabled',
text: ['add to cart']
}
},
links: [
Expand Down

0 comments on commit 0525119

Please sign in to comment.