Hi, I've created the agency bot for Iphone 16 Pro Max, but when the bot comes to the final page where it must click "Place Order" button, it doesn't click. Here's the code ` const puppeteer = require('puppeteer-extra'); const { executablePath } = require('puppeteer'); const StealthPlugin = require('puppeteer-extra-plugin-stealth'); puppeteer.use(StealthPlugin()); const locateChrome = require('chrome-location'); let url_16 = "https://www.apple.com/shop/buy-iphone/iphone-16-pro" async function givePage() { const browser = await puppeteer.launch({headless: false, executablePath: locateChrome}) let page = await browser.newPage(); return page } async function run() { let page = await givePage(); await page.goto(url_16); await add_to_cart(page); await shipping(page); await payment(page); } async function add_to_cart(page) { await smart_click_with_pause(page, "input[data-autom='dimensionScreensize6_3inch']", 0) await smart_click_with_pause(page, "input[value='deserttitanium']", 0) await smart_click_with_pause(page, "input[data-autom='dimensionCapacity256gb']", 500) await smart_click_with_pause(page, "[id='noTradeIn_label']", 1500) await smart_click_with_pause(page, "[data-autom='purchaseGroupOptionfullprice_price']", 1000) await smart_click_with_pause(page, ".form-selector-title.rf-bfe-dimension-simfree", 1500) await smart_click_with_pause(page, "[id='applecareplus_59_noapplecare_label']", 500) await smart_click_with_pause(page, "[data-autom='add-to-cart']", 0) } async function shipping(page) { await smart_click_with_pause(page, "button[name='proceed']", 0) await smart_click_with_pause(page, "[id='shoppingCart.actions.navCheckoutOtherPayments']", 1000) await smart_click_with_pause(page, "[id='signIn.guestLogin.guestLogin']", 0) await smart_click_with_pause(page, "[id='rs-checkout-continue-button-bottom']", 500) // Writing necessary information in input(first input only with waitForSelector)