test('3. switch sandbox', async ({ pfaPage }) => { const commonPage = new PfaCommonPage(pfaPage); // Previous test loaded qatd sandbox; switch to ue await commonPage.clickDropDown
Epic Games
| Offer ID | 7acbce39dbb342edb9090792894045f3 |
|---|---|
| Namespace | |
| Offer Type | Bundle |
| Seller | Epic Games |
| Developer | Epic Games |
| Supported Platforms | |
| Release Date | (10 years ago) |
| Last Update | 21 May 2026 at 06:17 UTC(3 months ago) |
| Creation Date | 31 January 2020 at 05:47 UTC(6 years ago) |
Epic Internal Offer
test('3. switch sandbox', async ({ pfaPage }) => { const commonPage = new PfaCommonPage(pfaPage); // Previous test loaded qatd sandbox; switch to ue await commonPage.clickDropDownBoxContainsLabel('Sandbox'); await commonPage.enterComboboxPrecededLabel('Sandbox', 'ue'); await commonPage.clickDropDownItem('UE Marketplace'); await commonPage.enterComboboxPrecededLabel('Keywords', 'iris'); await commonPage.clickSearchButton(); await commonPage.waitLoad(); await commonPage.checkReportItemContainsTextPresent('iris UE test(List Integration)'); }); test('4. search by keywords', async ({ pfaPage }) => { const offerPage = new PfaOfferPage(pfaPage); const commonPage = new PfaCommonPage(pfaPage); await offerPage.navigateToOffersPage(sandboxId); // Keywords is a combobox (ant-select-combobox) await commonPage.enterComboboxPrecededLabel('Keywords', testKeyword); await commonPage.clickSearchButton(); await commonPage.waitLoad(); await commonPage.checkReportItemContainsTextPresent('e2e non conforming'); }); test('5. find offer by ID', async ({ pfaPage }) => { const offerPage = new PfaOfferPage(pfaPage); const com
