Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Staschalapko committed Sep 17, 2024
1 parent 76e15f0 commit be29543
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ mainTest.describe(() => {
// });

mainTest(qase(1729,'PENPOT-1729 Move a component between pages'), async ({page, context}) => {
const playwrightVersion = require('@playwright/test/package.json').version;
const browserVersion = await browser.version();
const userAgent = await page.evaluate(() => navigator.userAgent);

console.log('User-Agent:', userAgent);
console.log('WebKit version:', browserVersion);
console.log('Playwright version:', playwrightVersion);
await mainPage.createComponentViaRightClick();
await mainPage.waitForChangeIsSaved();
await mainPage.clickViewportOnce();
Expand Down
4 changes: 2 additions & 2 deletions tests/view-mode.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ mainTest.describe(() => {
// });

mainTest(qase([689], 'CO-368 Interactions dropdown'), async ({ page }) => {
const userAgent = await page.evaluate(() => navigator.userAgent);
const playwrightVersion = require('@playwright/test/package.json').version;
const browserVersion = await browser.version();

console.log('WebKit version:', browserVersion);
console.log('Playwright version:', playwrightVersion);
console.log('User-Agent:', userAgent);
await mainPage.createDefaultBoardByCoordinates(300, 300);
await mainPage.createDefaultBoardByCoordinates(500, 500, true);
await mainPage.waitForChangeIsSaved();
Expand Down

0 comments on commit be29543

Please sign in to comment.