require('webdriverio') is not working with require.js

477 Views Asked by At

I'm trying to launch webdriverio using Java. I have two files one java file and other test.js file to launch the web driver.

test.js file

var webdriverio = require('webdriverio');
var options = {
    desiredCapabilities: {
        browserName: 'chrome'
    }
};
function launchbrowser(){
    var client=webdriverio.remote(options).init();
    client.url('https://www.google.com');
    client.end();
}

Java File to call test.js

System.out.println("Launching WebDriver IO");
String testjsFile = System.getProperty("user.dir") + File.separator + "scripts"
                + File.separator + "test.js";
ScriptEngine engine = new ScriptEngineManager().getEngineByName("nashorn");
engine.eval("load('scripts/r.js');");
engine.eval(new FileReader(testjsFile));
Invocable invocable = (Invocable) engine;
invocable.invokeFunction("launchbrowser");

But I'm not able to launch web driver in this case. If i dont use r.js file then its giving error

require is not Defined.

Anyone please help me out how we can resolve require('webdriverio')

2

There are 2 best solutions below

1
On

require is not a standard ECMAScript built-in function. You've to use third-party require implementation like requirejs.

I presume r.js you referred above is from requirejs.org project. What is the error you get when you eval "r.js"?

0
On

Try to configure Babel From official docs

https://webdriver.io/docs/babel.html

Then you can use a normal import instead