Skip to content

Instantly share code, notes, and snippets.

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 {
// ======================
// 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';