Skip to main content

Questions tagged [electron-vue]

The aim of electron-vue is to remove the need of manually setting up electron apps using vue. electron-vue takes advantage of vue-cli for scaffolding, webpack with vue-loader, electron-packager or electron-builder, and some of the most used plugins like vue-router, vuex, and so much more.

electron-vue
2 votes
1 answer
5k views

PlayWright: Page.title() returning empty value. Trying to add automation in electron-vue project

For automated testing, I'm attempting to incorporate Playwright into my electron-vue project. I run the test, and Page.title() returns "". Here is the code: test("renders the screen ...
Nikhil's user avatar
  • 201
1 vote
1 answer
2k views

PlayWright Electron: Is it possible to get BrowserWindow from Page?

I'm trying to find the electron window object that contains the loaded page. I want to take the following action: let window1 : BrowserWindow | null = null let window2 : BrowserWindow | null = null ...
Nikhil's user avatar
  • 201