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.
1 parent 357845b commit 30794b5Copy full SHA for 30794b5
tests/e2e/DigV2/ComplexFields/EmbeddedData.spec.js
@@ -53,6 +53,14 @@ test.describe("E2E test", () => {
53
await selectedEditMode.click();
54
await page.locator('mat-option > span:has-text("Editable")').click();
55
56
+ const PCoreVersion = await page.evaluate(() => window.PCore.getPCoreVersion());
57
+
58
+ if (!PCoreVersion.includes('8.8')) {
59
+ const editModeType = await page.locator('mat-select[data-test-id="80c1db3a7b228760228004b1a532c71e"]');
60
+ await editModeType.click();
61
+ await page.locator('mat-option > span:has-text("Table rows")').click();
62
+ }
63
64
const noRecordsMsg = page.locator('div[id="no-records"]');
65
await expect(noRecordsMsg.locator('text="No Records Found."')).toBeVisible();
66
0 commit comments