|
const {test, expect} =require('@playwright/test')
|
|
import { LoginPage } from '../pages/LoginPage';
|
|
import { OrderPage } from '../pages/OrderPage';
|
|
import { AppConfig } from '../pages/AppConfig';
|
|
import { CouponPage } from '../pages/Couponpage';
|
|
import { UserPage } from '../pages/UserPage';
|
|
import { CatlogPage } from '../pages/CatlogPage';
|
|
import { ProductPage } from '../pages/ProductPage';
|
|
|
|
|
|
/*----------------------------------------OrderID Complete Check-------------------------------------------*/
|
|
|
|
|
|
test('Get Orders-Order by ID API',async ({request,page})=>{
|
|
|
|
const response = await request.get('https://dev.orderbookings.com/api/order/syncOrders?user_id=670766e4272db54e96e423e0&phone=919480111222&lastupdatetime=0&merchantCode=919480707707&role=ROLE_TYPE_MERCHANT')//base uri should maintan separately
|
|
console.log(await response.json())
|
|
//expect(response.status()).toBe(200) //dont put commented code in repo
|
|
// const text = await response.text(); //its better to give discription for the steps you are following in comments
|
|
// expect(text).toContain('Manju') //add the ids of manual testcases in test.describe also suggest if the testcase is from regression suit or not and add tags respectively
|
|
const res = await response.json();
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
const order = new OrderPage(page);
|
|
const result = await order.textBoxSearch('ORDER_STATUS_COMPLETE', 'Shubya');
|
|
// await page.waitForTimeout(5000);
|
|
//const username= result.OrderId;
|
|
//expect.soft("//td[normalize-space()='Shubya']").toContain(res.data[0].ordered_by_name);
|
|
expect.soft(order.orderName).toContain(res.data[0].ordered_by_name);
|
|
expect.soft(order.orderEmail).toContain(res.data[0].ordered_by_email);
|
|
expect.soft(order.orderPhone).toContain((res.data[0].ordered_by_address.phone).toString());
|
|
expect.soft(order.orderCost).toContain((res.data[0].order_cost).toString());
|
|
expect.soft(order.orderQty).toContain((res.data[0].ordered_items_qty[0]).toString());
|
|
|
|
})
|
|
|
|
/*---------------------------------------------App Config----------------------------------------------------*/
|
|
|
|
test('complete AppConfig page to check API',async ({page,request})=>{
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
const config = new AppConfig(page);
|
|
await config.functionalityAppConfig('UAE dirham (د.إ;)','7','5', '400', '35', '9565456737', 'City','Tamil Nadu');
|
|
|
|
// await page.close();
|
|
|
|
const response = await request.get('https://dev.orderbookings.com/api/config/919480707707?merchantCode=919480707707')
|
|
console.log(await response.json())
|
|
const res = await response.json();
|
|
|
|
//await page.close();
|
|
|
|
//await login.gotoLoginPage();
|
|
// await login.loginWithCrtPassword();
|
|
|
|
// await config.openAppConf();
|
|
|
|
expect.soft(config.merchantCode).toContain(res.data.merchantCode);
|
|
|
|
// const textBoxValue=await page.locator(config.calltoactionAPI).inputValue();
|
|
// expect.soft(textBoxValue).toContain(res.data.call_to_action).toString();
|
|
|
|
//const currencyValue=await page.locator(config.currencyAPI).inputValue();
|
|
// expect.soft(currencyValue).toContain(res.data.currency_code);
|
|
|
|
const notificationLoop = await page.locator(config.notificationSoundLoopAPI).inputValue();
|
|
expect.soft(notificationLoop).toContain((res.data.notification_sound_loop).toString());
|
|
|
|
const cancellationTillResponse = await page.locator(config.cancellationTillAPI).inputValue();
|
|
expect.soft(cancellationTillResponse).toContain((res.data.cancellation_till).toString());
|
|
|
|
const minimumCartPrizeResponse = await page.locator(config.minimumCartPrizeAPI).inputValue();
|
|
expect.soft( minimumCartPrizeResponse).toContain((res.data.minimum_cart_price).toString());
|
|
|
|
const deliveryChargeResponse = await page.locator(config.deliveryChargeAPI).inputValue();
|
|
expect.soft( deliveryChargeResponse).toContain((res.data.delivery_charge).toString());
|
|
|
|
// expect.soft(config.areaSelection).toContain((res.data.area_type).toString());
|
|
|
|
})
|
|
|
|
/*----------------------------------------------Coupon---------------------------------------------------*/
|
|
|
|
test('APITesting_Coupon Get Details as User',async ({request,page})=>{
|
|
const response = await request.get('https://dev.orderbookings.com/api/available-coupon/670e14cf14f563f755f3e2a1/919480707707')
|
|
console.log(await response.json())
|
|
|
|
const res = await response.json();
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
const coupon = new CouponPage(page);
|
|
await coupon.viewCoupon();
|
|
expect.soft(coupon.shortDescription).toContain(res.data[1].name);
|
|
expect.soft(coupon.descriptionCheck).toContain(res.data[1].description);
|
|
expect.soft(coupon.internalCouponValue).toContain(res.data[1].code);
|
|
expect.soft(coupon.couponCode).toContain(res.data[1].campaign_code);
|
|
// expect.soft(coupon.forUsers).toContain(res.data[0].for);
|
|
})
|
|
|
|
|
|
test('APITesting_Coupon Get Details as Guest',async ({request,page})=>{
|
|
const response = await request.get('https://dev.orderbookings.com/api/available-coupon-guest/919480707707')
|
|
console.log(await response.json())
|
|
const res = await response.json();
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
const coupon = new CouponPage(page);
|
|
await coupon.viewCoupon();
|
|
expect.soft(coupon.shortDescriptionGuest).toContain(res.data[0].name);
|
|
expect.soft(coupon.descriptionCheckGuest).toContain(res.data[0].description);
|
|
expect.soft(coupon.internalCouponValueGuest).toContain(res.data[0].code);
|
|
expect.soft(coupon.couponCodeGuest).toContain(res.data[0].campaign_code);
|
|
// expect.soft(coupon.forUsersGuest).toContain(res.data[0].for);
|
|
})
|
|
|
|
/*----------------------------------------------OrderId Pending---------------------------------------------*/
|
|
|
|
//get order by order id and compare with web ui in the order list.
|
|
test('GET ORDER BY ORDER_ID',async ({request,page})=>{
|
|
|
|
|
|
|
|
const response1 = await request.get('https://dev.orderbookings.com/api/order/getorder/670e249314f563f755f3e2a5')
|
|
|
|
console.log(await response1.json())
|
|
|
|
const res = await response1.json();
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
const order = new OrderPage(page);
|
|
await order.textBoxSearch('ORDER_STATUS_PENDING', 'DAYA');
|
|
|
|
expect.soft(order.userid).toContain(res.data.id); //id
|
|
expect.soft(order.username).toContain(res.data.ordered_by_name); //name
|
|
expect.soft(order.useremail).toContain(res.data.ordered_by_email); //email
|
|
expect.soft(order.userphone).toContain(res.data.ordered_by_phone); //phone
|
|
// expect.soft(order.userorderitems).toContain((res.data.ordered_items[0]).toString()); //order items
|
|
const element = await page.locator(order.userorderitems);
|
|
const text = await element.textContent();
|
|
expect(text).toContain(res.data.ordered_items[0]);
|
|
// expect.soft(order.ordercost).toContain((res.data.order_cost).toString()); //order cost is different 604 vs 654
|
|
expect.soft(order.orderqty).toContain((res.data.ordered_items_qty[0]).toString()); // order qty
|
|
//expect.soft(order.userorderstatus).toContain(res.data.order_status); // order status is complete
|
|
await page.close();
|
|
|
|
})
|
|
|
|
|
|
/*---------------------------------------------------------User Details----------------------------------*/
|
|
|
|
|
|
//get order by order id and compare with web ui in the order list.
|
|
test('GET USER Details',async ({request,page})=>{
|
|
|
|
|
|
|
|
const response2 = await request.get('https://dev.orderbookings.com/api/user/userreg?phone=919480111111&merchantCode=919480707707')
|
|
|
|
console.log(await response2.json())
|
|
|
|
const res = await response2.json();
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
const user = new UserPage(page);
|
|
await user.userAPI();
|
|
|
|
expect.soft(user.userNameAPI).toContain(res.data.name);
|
|
expect.soft(user.userPhoneAPI).toContain(res.data.phone);
|
|
expect.soft(user.userEmailAPI).toContain(res.data.email);
|
|
expect.soft(user.merchantCode).toContain(res.data.merchantCode);
|
|
expect.soft(user.addressAPI).toContain(res.data.area[0]);
|
|
expect.soft(user.addressAPI).toContain(res.data.area[1]);
|
|
expect.soft(user.addressAPI).toContain(res.data.area[2]);
|
|
|
|
await page.close();
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------Get Categories and Products-----------------------------------------------*/
|
|
|
|
test('Get Categories and products',async ({page,request})=>{
|
|
|
|
|
|
//Main Page Element locating
|
|
const response = await request.get('https://dev.orderbookings.com/api/bud/919480707707')
|
|
|
|
console.log(await response.json())
|
|
|
|
const res = await response.json();
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
const catlog = new CatlogPage(page);
|
|
await catlog.clickCatalogButton();
|
|
|
|
const obaBudView = page.locator('//select[@id="oba_bud_view"]');
|
|
const obaProductView = page.locator('//select[@id="oba_product_view"]');
|
|
|
|
const budValue = await obaBudView.inputValue();
|
|
const productValue = await obaProductView.inputValue();
|
|
|
|
expect.soft(budValue).toContain(res.data.buds[0].childview);
|
|
expect.soft(productValue).toContain(res.data.buds[0].product_childview);
|
|
|
|
// Mens Page
|
|
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
await catlog.clickCatalogButton();
|
|
let Category1 = await catlog.NavigateToMens();
|
|
|
|
|
|
let Name1 = await Category1.catnames;
|
|
let catlogViewType1 = await Category1.selecteddcattype;
|
|
let Productviewtype1 = await Category1.selecctedprodtype;
|
|
let Catislive1 = await Category1.isActive;
|
|
let merchantid = await Category1.merchatcode;
|
|
|
|
|
|
let cat1 =res.data.buds[1].name;
|
|
let catlog1ViewType1 =res.data.buds[1].childview;
|
|
let cat1Productviewtype =res.data.buds[1].product_childview;
|
|
let cat1islive = res.data.buds[1].is_live;
|
|
let merchantcode =res.data.buds[1].merchantCode;
|
|
var cat2 = res.data.buds[2].name; //womens
|
|
var cat3 = res.data.buds[3].name; //kids
|
|
|
|
|
|
expect.soft(Name1).toEqual(cat1);
|
|
expect.soft(merchantid).toEqual(merchantcode)
|
|
expect.soft(catlogViewType1).toEqual(catlog1ViewType1);
|
|
expect.soft(Productviewtype1).toEqual(cat1Productviewtype);
|
|
expect.soft(Catislive1).toEqual(cat1islive);
|
|
|
|
|
|
// Womens Page
|
|
|
|
|
|
let Category2 = await catlog.NavigateToWomens();
|
|
const Name2 = await Category2.catnames;
|
|
const catlogViewType2 = await Category2.selecteddcattype;
|
|
const Productviewtype2 = await Category2.selecctedprodtype;
|
|
const Catislive2 = Category2.isActive;
|
|
console.log('For Womens' +Catislive2);
|
|
// const Catproducts2 = await Category2.Productsincluded;
|
|
|
|
let cat2logViewType =res.data.buds[2].childview;
|
|
let cat2Productviewtype =res.data.buds[2].product_childview;
|
|
let cat2islive = res.data.buds[2].is_live;
|
|
let merchantcode2 =res.data.buds[2].merchantCode;
|
|
|
|
expect.soft(Name2).toEqual(cat2);
|
|
expect.soft(merchantid).toEqual(merchantcode2)
|
|
expect.soft(catlogViewType2).toEqual(cat2logViewType);
|
|
expect.soft(Productviewtype2).toEqual(cat2Productviewtype);
|
|
expect.soft(Catislive2).toEqual(cat2islive);
|
|
// expect.soft(Catproducts2).toEqual(res.data.buds[2].products);
|
|
|
|
//this cat3 is kids
|
|
let Category3 = await catlog.NavigateToKids();
|
|
const Name3 = await Category3.catnames;
|
|
const catlogViewType3 = await Category3.selecteddcattype;
|
|
const Productviewtype3 = await Category3.selecctedprodtype;
|
|
const Catislive3 = Category3.isActive;
|
|
console.log('for kids:' +Catislive3);
|
|
//const Catproducts3 = await Category3.Productsincluded;
|
|
|
|
//api request response are in object so we need save in the letibale to compare.
|
|
let cat3ogViewType =res.data.buds[3].childview;
|
|
let cat3Productviewtype =res.data.buds[3].product_childview;
|
|
let cat3islive = res.data.buds[3].is_live;
|
|
let merchantcode3 =res.data.buds[3].merchantCode;
|
|
|
|
expect.soft(Name3).toEqual(cat3);
|
|
expect.soft(merchantid).toEqual(merchantcode3);
|
|
expect.soft(catlogViewType3).toEqual(cat3ogViewType);
|
|
expect.soft(Productviewtype3).toEqual(cat3Productviewtype);
|
|
expect.soft(Catislive3).toEqual(cat3islive);
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('Get Products',async ({request,page})=>{
|
|
|
|
const response = await request.get('https://dev.orderbookings.com/api/bud/919480707707')
|
|
console.log(await response.json())
|
|
|
|
const res = await response.json();
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
const product = new ProductPage(page);
|
|
await product.clickProductlistButton();
|
|
|
|
|
|
const productName = await page.textContent("//td[normalize-space()='T-Shirt']");
|
|
expect.soft(productName.trim()).toContain(res.data.products[0].name.trim());
|
|
// expect.soft(product.nameAPI).toContain(res.data.products[0].name);
|
|
expect.soft(product.priceAPI).toContain((res.data.products[0].price).toString());
|
|
expect.soft(product.quantityAPI).toContain((res.data.products[0].quantity).toString());
|
|
|
|
const productBoolean =
|
|
{
|
|
availableAPI: await page.textContent("//td[normalize-space()='true']")
|
|
};
|
|
expect.soft(productBoolean.availableAPI.trim()).toBe(String(res.data.products[0].available));
|
|
expect.soft(product.orderlimitAPI).toContain((res.data.products[0].order_limit).toString());
|
|
|
|
})
|
|
|
|
|
|
/*---------------------------------------------------Address API-----------------------------------------------------------------------------------------------------*/
|
|
|
|
test('Complete Address API',async({page,request})=>{
|
|
|
|
let resourceId;
|
|
|
|
|
|
// 1. Post Response
|
|
|
|
|
|
const postResponse = await request.post('https://dev.orderbookings.com/api/user/addnewaddress',{
|
|
data: {
|
|
"addressLine1": "35",
|
|
"addressLine2": "Mount Main Road ",
|
|
"city": "Chennai",
|
|
"stateOrProvince": "Tamil Nadu",
|
|
"postalCode": "123111",
|
|
"phone": "919480111111",
|
|
"deliveryInstructions": null,
|
|
"isDefault": true,
|
|
"user_id": "670e14cf14f563f755f3e2a1",
|
|
"title": "test address",
|
|
"area": "Chennai"
|
|
},
|
|
});
|
|
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
const user = new UserPage(page);
|
|
await user.addressListAPI();
|
|
|
|
|
|
expect(postResponse.status()).toBe(200); // HTTP 200 indicates a successful creation
|
|
const postResponseBody = await postResponse.json(); // Parse the response body
|
|
console.log(postResponseBody);
|
|
|
|
// Validate response body
|
|
expect(postResponseBody.data).toHaveProperty('id'); // Assuming the API returns an `id` for the new resource
|
|
resourceId = postResponseBody.data.id;
|
|
|
|
//Assertion for post
|
|
expect.soft(user.addressList).toContain(postResponseBody.data.addressLine1);
|
|
expect.soft(user.addressList).toContain(postResponseBody.data.addressLine2);
|
|
expect.soft(user.addressList).toContain(postResponseBody.data.stateOrProvince);
|
|
expect.soft(user.addressList).toContain((postResponseBody.data.postalCode).toString());
|
|
|
|
// 2. Get address list
|
|
|
|
const getResponse = await request.get('https://dev.orderbookings.com/api/user/addresslist?user_id=670e14cf14f563f755f3e2a1')
|
|
|
|
console.log(await getResponse.json())
|
|
|
|
const getResponseBody = await getResponse.json();
|
|
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
await page.waitForTimeout(5000);
|
|
|
|
await user.addressListAPI();
|
|
|
|
|
|
|
|
expect.soft(user.addressList).toContain(getResponseBody.data[1].addressLine1);
|
|
expect.soft(user.addressList).toContain(getResponseBody.data[1].addressLine2);
|
|
expect.soft(user.addressList).toContain(getResponseBody.data[1].stateOrProvince);
|
|
expect.soft(user.addressList).toContain((getResponseBody.data[1].postalCode).toString());
|
|
|
|
//3.Patch Request
|
|
|
|
|
|
const patchResponse = await request.patch('https://dev.orderbookings.com/api/user/updateaddress',{
|
|
data: {
|
|
|
|
"addressLine1": "35",
|
|
"addressLine2": "Mount Kitchen Main Road",
|
|
"city": "",
|
|
"stateOrProvince": "Tamil Nadu",
|
|
"postalCode": "123111",
|
|
"phone": "91948011111",
|
|
"deliveryInstructions": null,
|
|
"isDefault": true,
|
|
"user_id": "670e14cf14f563f755f3e2a1",
|
|
"title": "test address",
|
|
"area": "Chennai",
|
|
"address_id": resourceId
|
|
},
|
|
});
|
|
|
|
console.log(await patchResponse.json())
|
|
|
|
const patchResponseBody = await patchResponse.json();
|
|
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await user.addressListAPI();
|
|
|
|
|
|
expect.soft(user.addressPatch).toContain(patchResponseBody.data.addressLine1);
|
|
expect.soft(user.addressPatch).toContain(patchResponseBody.data.addressLine2);
|
|
expect.soft(user.addressPatch).toContain(patchResponseBody.data.stateOrProvince);
|
|
expect.soft(user.addressPatch).toContain((patchResponseBody.data.postalCode).toString());
|
|
|
|
|
|
// 4. Delete Request
|
|
const deleteResponse = await request.delete('https://dev.orderbookings.com/api/user/deleteaddress', {
|
|
data:{
|
|
"user_id": "670e14cf14f563f755f3e2a1",
|
|
"address_id": resourceId,
|
|
}
|
|
});
|
|
|
|
// Validate DELETE response
|
|
expect(deleteResponse.status()).toBe(200); // Typically, HTTP 200 or 204 is expected for successful deletions
|
|
const deleteResponseBody = await deleteResponse.text(); // Some APIs may not return JSON for DELETE
|
|
console.log('DELETE response:', deleteResponseBody);
|
|
|
|
})
|
|
|
|
|
|
|
|
test('Post and Delete Address API',async({page,request})=>{
|
|
|
|
|
|
// 1. Post Response
|
|
const postResponse = await request.post('https://dev.orderbookings.com/api/user/addnewaddress',{
|
|
data: {
|
|
"addressLine1": "52",
|
|
"addressLine2": "25",
|
|
"city": "",
|
|
"stateOrProvince": "",
|
|
"postalCode": "123123",
|
|
"phone": "919480111111",
|
|
"deliveryInstructions": null,
|
|
"isDefault": false,
|
|
"user_id": "670e14cf14f563f755f3e2a1",
|
|
"title": "test address",
|
|
"area": "Chennai"
|
|
},
|
|
});
|
|
|
|
|
|
expect(postResponse.status()).toBe(200); // HTTP 201 indicates a successful creation
|
|
const postResponseBody = await postResponse.json(); // Parse the response body
|
|
console.log(postResponseBody);
|
|
|
|
// Validate response body
|
|
expect(postResponseBody.data).toHaveProperty('id'); // Assuming the API returns an `id` for the new resource
|
|
const resourceId = postResponseBody.data.id;
|
|
|
|
|
|
|
|
// 2. Delete Request
|
|
const deleteResponse = await request.delete('https://dev.orderbookings.com/api/user/deleteaddress', {
|
|
data:{
|
|
"user_id": "670e14cf14f563f755f3e2a1",
|
|
"address_id": resourceId,
|
|
}
|
|
});
|
|
|
|
// Validate DELETE response
|
|
expect(deleteResponse.status()).toBe(200); // Typically, HTTP 200 or 204 is expected for successful deletions
|
|
const deleteResponseBody = await deleteResponse.text(); // Some APIs may not return JSON for DELETE
|
|
console.log('DELETE response:', deleteResponseBody);
|
|
|
|
})
|
|
|
|
/*--------------------------------------------------------------------------------------------------------------------*/
|
|
//Order Page cannot be automated, since the API datas are missing, as it is continued from place order, products are missing
|
|
/*
|
|
test('Cancel Order API',async({page,request})=>{
|
|
|
|
|
|
const postResponse = await request.post('https://dev.orderbookings.com/api/order/cancelorder',{
|
|
"order_id":"670e240e14f563f755f3e2a4"
|
|
|
|
});
|
|
|
|
|
|
// const login = new LoginPage(page);
|
|
// await login.gotoLoginPage();
|
|
// await login.loginWithCrtPassword();
|
|
|
|
// await page.waitForTimeout(5000);
|
|
|
|
// const order = new OrderPage(page);
|
|
// await order.checkFilterButton('ORDER_STATUS_CANCELLED');
|
|
|
|
|
|
|
|
expect(postResponse.status()).toBe(200); // HTTP 201 indicates a successful creation
|
|
const postResponseBody = await postResponse.json(); // Parse the response body
|
|
// expect.soft(user.orderIdCancel).toContain(postResponseBody.order_id);
|
|
|
|
console.log(postResponseBody);
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
test('Post Rate Order Address API',async({page,request})=>{
|
|
|
|
//place an order
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Complete an order
|
|
|
|
|
|
|
|
|
|
// Post Response
|
|
|
|
|
|
const postResponse = await request.post('https://dev.orderbookings.com/api/order/rateOrder',{
|
|
data: {
|
|
"order_id": "67076b44272db54e96e423eb",
|
|
"rating":4,
|
|
"fcm_token":"kjdfhkdbshigkmadniuaghkk"
|
|
},
|
|
});
|
|
|
|
|
|
const login = new LoginPage(page);
|
|
await login.gotoLoginPage();
|
|
await login.loginWithCrtPassword();
|
|
|
|
await page.waitForTimeout(5000);
|
|
|
|
const order = new OrderPage(page);
|
|
await order.checkFilterButton('ORDER_STATUS_COMPLETE');
|
|
|
|
expect(postResponse.status()).toBe(200); // HTTP 201 indicates a successful creation
|
|
const postResponseBody = await postResponse.json(); // Parse the response body
|
|
console.log(postResponseBody);
|
|
|
|
expect.soft(order.orderID).toContain(postResponseBody.order_id); //id
|
|
expect.soft(order.orderRate).toContain(postResponseBody.rating); //name
|
|
|
|
await page.close();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
*/
|