import Bandai from "../src/Bandai"; async function main() { const email = 'allin-603@outlook.com'; const password = '123456789qw'; const account = new Bandai(email, password); const accountInfo = await account.login(); console.debug('Account', accountInfo); const url = 'https://p-bandai.jp/item/item-1000245579/?spec=pc21&cref=500894283&click_recom=1'; await account.order(url); const cartList = await account.getCartList(); console.debug('Cart', cartList); await account.open('https://p-bandai.jp/cart'); } main().then(() => { console.debug('Done'); });