* In progress tests * Updated createdPackaged tests * Added test for checking if we are able to see the marketplace * Added tests for checking if the correct message is shown * Made quite a lot of changes, used the locators in the testHelpers. Added additional tests * Updated to match changes to the Ui TestHelpers * Fixed test * added package file * Bumped versions * Updated naming * Fixed Acceptance Test to match patterns * Updated locator in test. * Added Act comment * Followed comments from PR
17 lines
594 B
TypeScript
17 lines
594 B
TypeScript
import {ConstantHelper, test} from '@umbraco/playwright-testhelpers';
|
|
|
|
test.describe('Packages tests', () => {
|
|
// The MarketPlace is a iFrame we are using from the DXP team, so it is not something we should test. This test is just checking if we have the IFrame
|
|
test('can see the marketplace', async ({umbracoUi}) => {
|
|
// Arrange
|
|
await umbracoUi.goToBackOffice();
|
|
await umbracoUi.package.goToSection(ConstantHelper.sections.packages);
|
|
|
|
// Act
|
|
await umbracoUi.package.clickPackagesTab();
|
|
|
|
// Assert
|
|
await umbracoUi.package.isMarketPlaceIFrameVisible();
|
|
});
|
|
});
|