最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Issue Running Custom Theia Executable in Playwright Electron Test - Stack Overflow

programmeradmin2浏览0评论

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();
    });
});
发布评论

评论列表(0)

  1. 暂无评论