Giter Site home page Giter Site logo

Comments (6)

anth0d avatar anth0d commented on August 27, 2024 5

Can we get a response on this issue @kevinsawicki ? It seems like Spectron was not designed for use with WDIO testrunner. I have had no success trying to use my existing WebdriverIO test framework with Spectron.

from spectron.

karlulricsimon avatar karlulricsimon commented on August 27, 2024

In addition to this, when I try to run a stand-alone test with mocha and chai, I get TypeError: Cannot read property 'isMinimized' of undefined. Would anyone know why this example from the documentation is failing or why browserWindow is undefined? I run the test by calling mocha test.js. Besides the different path to my electron app, the test file is copied and pasted.

from spectron.

kevinsawicki avatar kevinsawicki commented on August 27, 2024

In addition to this, when I try to run a stand-alone test with mocha and chai, I get TypeError: Cannot read property 'isMinimized' of undefined.

Does your electron app have node integration enabled?

from spectron.

karlulricsimon avatar karlulricsimon commented on August 27, 2024

Thanks for your response. I am generating the app using nativefier. Node integration is disabled on the app. Adding if (process.env.NODE_ENV === 'test') { window.electronRequire = require } to preload.js doesn't seem to impact the tests. I was hoping to use nativefier to produce a desktop version of a webapp I'm working on without needing to maintain two separate projects. This route is less appealing if I cant use the same tests to verify that both web and desktop versions of the app are functioning in the same ways. Do you have any thoughts or recommendations on how I might be able to get this working?

from spectron.

elvisvoer avatar elvisvoer commented on August 27, 2024

I had a similar issue and it took me a lot to work it out. In my test suite I was having:

beforeEach(function () {
    this.app = new Application({
      path: '/usr/local/bin/electron',
      args: [
        path.join(__dirname, '..')
      ],
    });
    return this.app.start();
  });

After I changed it to include the entry point script it worked:

beforeEach(function () {
    this.app = new Application({
      path: '/usr/local/bin/electron',
      args: [
        path.join(__dirname, '..', 'main.js')
      ],
    });
    return this.app.start();
  });

from spectron.

rafalradomski avatar rafalradomski commented on August 27, 2024

Can we use browser WDIO in spectron?

from spectron.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.