-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99e9f35
commit 4321d9d
Showing
6 changed files
with
240 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,59 @@ | ||
import { BrowserContext, ElectronApplication, Page, _electron as electron } from 'playwright'; | ||
import { test, expect } from '@playwright/test'; | ||
const PATH = require('path'); | ||
|
||
test.describe('Check Home Page', async () => { | ||
let app: ElectronApplication; | ||
let firstWindow: Page; | ||
let context: BrowserContext; | ||
|
||
test.beforeAll( async () => { | ||
app = await electron.launch({ args: [PATH.join(__dirname, '../app/main.js'), PATH.join(__dirname, '../app/package.json')] }); | ||
context = app.context(); | ||
await context.tracing.start({ screenshots: true, snapshots: true }); | ||
firstWindow = await app.firstWindow(); | ||
}); | ||
|
||
test('Launch electron app', async () => { | ||
|
||
const windowState: { isVisible: boolean; isDevToolsOpened: boolean; isCrashed: boolean } = await app.evaluate(async (process) => { | ||
const mainWindow = process.BrowserWindow.getAllWindows()[0]; | ||
|
||
const getState = () => ({ | ||
isVisible: mainWindow.isVisible(), | ||
isDevToolsOpened: mainWindow.webContents.isDevToolsOpened(), | ||
isCrashed: mainWindow.webContents.isCrashed(), | ||
}); | ||
|
||
return new Promise((resolve) => { | ||
if (mainWindow.isVisible()) { | ||
resolve(getState()); | ||
} else { | ||
mainWindow.once('ready-to-show', () => setTimeout(() => resolve(getState()), 0)); | ||
} | ||
}); | ||
}); | ||
|
||
expect(windowState.isVisible).toBeTruthy(); | ||
expect(windowState.isDevToolsOpened).toBeFalsy(); | ||
expect(windowState.isCrashed).toBeFalsy(); | ||
}); | ||
|
||
// test('Check Home Page design', async ({ browserName}) => { | ||
// // Uncomment if you change the design of Home Page in order to create a new screenshot | ||
// const screenshot = await firstWindow.screenshot({ path: '/tmp/home.png' }); | ||
// expect(screenshot).toMatchSnapshot(`home-${browserName}.png`); | ||
// }); | ||
|
||
test('Check title', async () => { | ||
const elem = await firstWindow.$('app-home h1'); | ||
const text = await elem.innerText(); | ||
expect(text).toBe('App works !'); | ||
}); | ||
|
||
test.afterAll( async () => { | ||
await context.tracing.stop({ path: 'e2e/tracing/trace.zip' }); | ||
await app.close(); | ||
}); | ||
}); | ||
import { BrowserContext, ElectronApplication, Page, _electron as electron } from 'playwright'; | ||
import { test, expect } from '@playwright/test'; | ||
const PATH = require('path'); | ||
|
||
test.describe('Check Home Page', async () => { | ||
let app: ElectronApplication; | ||
let firstWindow: Page; | ||
let context: BrowserContext; | ||
|
||
test.beforeAll( async () => { | ||
app = await electron.launch({ args: [PATH.join(__dirname, '../app/main.js'), PATH.join(__dirname, '../app/package.json')] }); | ||
context = app.context(); | ||
await context.tracing.start({ screenshots: true, snapshots: true }); | ||
firstWindow = await app.firstWindow(); | ||
await firstWindow.waitForLoadState('domcontentloaded'); | ||
}); | ||
|
||
test('Launch electron app', async () => { | ||
|
||
const windowState: { isVisible: boolean; isDevToolsOpened: boolean; isCrashed: boolean } = await app.evaluate(async (process) => { | ||
const mainWindow = process.BrowserWindow.getAllWindows()[0]; | ||
|
||
const getState = () => ({ | ||
isVisible: mainWindow.isVisible(), | ||
isDevToolsOpened: mainWindow.webContents.isDevToolsOpened(), | ||
isCrashed: mainWindow.webContents.isCrashed(), | ||
}); | ||
|
||
return new Promise((resolve) => { | ||
if (mainWindow.isVisible()) { | ||
resolve(getState()); | ||
} else { | ||
mainWindow.once('ready-to-show', () => setTimeout(() => resolve(getState()), 0)); | ||
} | ||
}); | ||
}); | ||
|
||
expect(windowState.isVisible).toBeTruthy(); | ||
expect(windowState.isDevToolsOpened).toBeFalsy(); | ||
expect(windowState.isCrashed).toBeFalsy(); | ||
}); | ||
|
||
// test('Check Home Page design', async ({ browserName}) => { | ||
// // Uncomment if you change the design of Home Page in order to create a new screenshot | ||
// const screenshot = await firstWindow.screenshot({ path: '/tmp/home.png' }); | ||
// expect(screenshot).toMatchSnapshot(`home-${browserName}.png`); | ||
// }); | ||
|
||
test('Check title', async () => { | ||
const elem = await firstWindow.$('app-home h1'); | ||
const text = await elem.innerText(); | ||
expect(text).toBe('App works !'); | ||
}); | ||
|
||
test.afterAll( async () => { | ||
await context.tracing.stop({ path: 'e2e/tracing/trace.zip' }); | ||
await app.close(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
/** @type {import('@playwright/test').PlaywrightTestConfig} */ | ||
const config = { | ||
testDir: '.', | ||
timeout: 45000, | ||
outputDir: './screenshots', | ||
use: { | ||
headless: false, | ||
viewport: { width: 1280, height: 720 }, | ||
launchOptions: { | ||
slowMo: 1000, | ||
}, | ||
trace: 'on', | ||
}, | ||
expect: { | ||
toMatchSnapshot: { threshold: 0.2 }, | ||
}, | ||
}; | ||
|
||
module.exports = config; | ||
/** @type {import('@playwright/test').PlaywrightTestConfig} */ | ||
const config = { | ||
testDir: '.', | ||
timeout: 45000, | ||
outputDir: './screenshots', | ||
use: { | ||
headless: false, | ||
viewport: { width: 1280, height: 720 }, | ||
launchOptions: { | ||
slowMo: 1000, | ||
}, | ||
trace: 'on', | ||
}, | ||
expect: { | ||
toMatchSnapshot: { threshold: 0.2 }, | ||
}, | ||
}; | ||
|
||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "../out-tsc/e2e", | ||
"module": "commonjs", | ||
"types": [ | ||
"node" | ||
] | ||
}, | ||
"include": [ | ||
"**.spec.ts" | ||
], | ||
} | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "../out-tsc/e2e", | ||
"module": "commonjs", | ||
"types": [ | ||
"node" | ||
] | ||
}, | ||
"include": [ | ||
"**.spec.ts" | ||
], | ||
} |
Oops, something went wrong.