I have a page object framework where I wrote my function with Oxygen calls in one js module, like below:
module.clickObject = function (name) {
driver.click(’[title="’ + name + ‘"]’);
driver.pause(1000);
return this;
}
I call this function in my main test script. Oxygen IDE freezes when I try to debug my main test script. I’m more accustomed to Intellij, but I don’t know how to run oxygen from this IDE. Is it possible to run oxygen in Intellij?