Как передать параметры в browser.executeScript
static sortableDragAndDropByClassName(dragElementClassName: string, dropElementClassName: string) {
return browser.executeScript(function () {
console.log(dragElementClassName);
console.log(dropElementClassName);
});
}
Дает мне следующее сообщение об ошибке:
- Failed: javascript error: dragElementClassName is not defined
Мой тест:
Helpers.sortableDragAndDropByClassName('page-row-option-item-1', 'page-row-option-item-0').then(() => {
...
});