This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function extractAndFormatGiftCards() { | |
// 1. Select all the individual gift card rows. | |
const cardRows = document.querySelectorAll('.innerListingTrns.bg-white'); | |
// 2. Create an empty array to store the data. | |
const cards = []; | |
// 3. Loop over each row found. | |
cardRows.forEach(row => { | |
try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ====================== | |
// 1️⃣ CONFIG & CONSTANTS | |
// ====================== | |
const giftCards = [ | |
{ code: '12312', pin: '123123'}, | |
{ code: '12312', pin: '123123'} | |
]; | |
const CLICK_BUTTON_SELECTOR = '.balance-blueIcon'; | |
const CLICK_BUTTON_TEXT = 'Add Gift Card'; |