From 67b19a7a8b3dead5f5ab9575ee2b4f09924ce851 Mon Sep 17 00:00:00 2001 From: Will Whitney Date: Fri, 11 Dec 2020 12:08:47 -0500 Subject: [PATCH] feat(playstation): add queuing selector (#1173) --- src/store/model/playstation.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/store/model/playstation.ts b/src/store/model/playstation.ts index 62b38dd..ec49952 100644 --- a/src/store/model/playstation.ts +++ b/src/store/model/playstation.ts @@ -3,10 +3,16 @@ import fetch from 'node-fetch'; export const PlayStation: Store = { labels: { - inStock: { - container: '.productHero-info .add-to-cart:not(.hide)', - text: ['Add'] - }, + inStock: [ + { + container: '.productHero-info .add-to-cart:not(.hide)', + text: ['Add'] + }, + { + container: '.bulleted-info.queue', + text: ['queue'] + } + ], outOfStock: { container: '.productHero-info .out-stock-wrpr:not(.hide)', text: ['Out of Stock']