We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
const mockResponseObject = { "userLocationsts":[ {"userPersonalInfoId": 1,"locationId": 42159, "name":"New Dominion Freight", "isSelected": true} ], "isThirdPartyVisibility": true, "isShowThirdParty": true }
test('customer home page intercept location rule', async ({page, context, browser}) => { await page.route('**/MyCarrierAPI//api/Account/GetUserLocationRule', (route) => route.fulfill( { status:200, contentType: 'application/json', body: JSON.stringify(mockResponseObject) })); })