Skip to content

Instantly share code, notes, and snippets.

@tnolet
Created February 22, 2018 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnolet/3fe4a740640ea8116183ad8628086cae to your computer and use it in GitHub Desktop.
Save tnolet/3fe4a740640ea8116183ad8628086cae to your computer and use it in GitHub Desktop.
puppeteergist
/**
* @name Etsy shopping cart
* @desc Goes to etsy.com, select the first knick knack and adds it to the shopping cart.
*/
const assert = require('assert')
const puppeteer = require('puppeteer')
let browser
let page
before(async () => {
browser = await puppeteer.launch()
page = await browser.newPage()
await page.setExtraHTTPHeaders({ 'Accept-Language': 'en-GB,en-US;q=0.9,en;q=0.8' })
await page.setViewport({ width: 1280, height: 800 })
})
describe('Etsy shopping cart', () => {
it('shows the correct category', async () => {
await page.goto('https://www.etsy.com/c/art-and-collectibles/collectibles/figurines?ref=catnav-66', { waitUntil: 'networkidle2' })
const categoryTitle = await page.evaluate(() => document.querySelector('h1').textContent)
assert.equal(categoryTitle, 'Figurines & Knicknacks')
}).timeout(20000)
it('selects the first product', async () => {
const products = await page.$$('.placeholder-content')
await products[0].click()
await page.waitForSelector('button.btn-buy-box')
assert.ok('Buy button showing')
}).timeout(10000)
it('adds the product to the cart', async () => {
await page.click('button.btn-buy-box')
await page.waitForSelector('h1.item-count')
const quantity = await page.evaluate(() => document.querySelector('h1.item-count').textContent.trim())
assert.equal(quantity, '1 item in your cart')
}).timeout(10000)
})
after(async () => {
await browser.close()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment