I am trying to test a custom Theia executable (.exe) using Playwright's Electron API, but I keep running into a timeout issue. The test script starts executing, and I can see that the executable is running in the background, but Playwright never detects the window. Here's the test script I am using:
const executablePath = "path/to/executable.exe";
test.describe('Theia Application Testing', () => {
test('Do Test', async () => {
console.log("Before");
const electronApp = await electron.launch({
executablePath: executablePath,
args: ['-d', dataPath]
});
console.log("After"); // This log never appears
const window = await electronApp.firstWindow();
});
});