Skip to content

Instantly share code, notes, and snippets.

@imartinflores
Created July 30, 2023 19:16
Show Gist options
  • Save imartinflores/a54e7297faccb57e467203b089cb5027 to your computer and use it in GitHub Desktop.
Save imartinflores/a54e7297faccb57e467203b089cb5027 to your computer and use it in GitHub Desktop.
test('Should add item to cart', async({page})=>{
const Url = 'https://ecommerce-playground.lambdatest.io/index.php/';
await page.goto(Url);
const response =await page.request.post(Url, {
params:{
route: "checkout/cart/add"
},
form: {
product_id: 28,
quantity: 1
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment