Murphybro2

Results 5 comments of Murphybro2

I came across this too, but in a slightly different fashion, I'll post the code needed to reproduce below. Weirdly enough it only happens when both the async call AND...

I can confirm this only started in the newest release.I just reverted everything back and it's perfect.

I have to agree to with this. The config you provide to the driver function should be the config that object uses. I have looked into changing it, but to...

If you create the driver in a function like so: ``` const driverObj = window.driver.js.driver(); function createDriver(config) { return { Start: function () { driverObj.setConfig(config); driverObj.drive(); }, Next: function ()...

> I had to work around this with a pretty similar approach - always creating the driverObj right before calling `drive` then just discard it after every use, instead of...