You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I want to use an async tour, I cannot call moveNext without having an external reference to the driver instance.
constdriverObj=driver({showProgress: true,steps: [{popover: {title: 'First Step',description: 'This is the first step. Next element will be loaded dynamically.'onNextClick: ()=>{driverObj.moveNext();},},},{popover: {title: 'Last Step',description: 'This is the last step.'}}]});
Should be replace by this
constmyDriverObj=driver({showProgress: true,steps: [{popover: {title: 'First Step',description: 'This is the first step. Next element will be loaded dynamically.'onNextClick: (driverObj,element,steps,opts)=>{driverObj.moveNext();},},},{popover: {title: 'Last Step',description: 'This is the last step.'}}]});
The text was updated successfully, but these errors were encountered:
If I want to use an async tour, I cannot call moveNext without having an external reference to the driver instance.
Should be replace by this
The text was updated successfully, but these errors were encountered: