import { DewElement } from "../element"; /** * EProcCartItems class */ export class EProcCartItems { /** * To get sum total of amount of items present in cart * @return {String} amountWithCurrency - sum of amount of items in cart */ async getTotalAmountOfCartItems(): Promise { let amountWithCurrency: any = ``; amountWithCurrency = await DewElement.grabTextFrom(`//eproc-cart-items//eproc-cart-spotlight//div/h5`); return amountWithCurrency; } }