public static boolean swipeToDirection_iOS_XCTest(MobileElement el, String direction) {
try {
JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap<String, String> swipeObject = new HashMap<String, String>();
if (direction.equals("d")) {
swipeObject.put("direction", "down");
} else if (direction.equals("u")) {
swipeObject.put("direction", "up");
} else if (direction.equals("l")) {
swipeObject.put("direction", "left");
} else if (direction.equals("r")) {
swipeObject.put("direction", "right");
}
swipeObject.put("element", el.getId());
js.executeScript("mobile:swipe", swipeObject);
return true;
} catch (Exception e) {
return false;
}
}
Я пытаюсь запустить этот фрагмент кода, и он не распознает драйвер, в котором я создал объект исполнителя javascript.Насколько я знаю, это часть синтаксиса, но он показывает ошибку: «драйвер не может быть преобразован как переменная».
I have already invoked the following:
import org.openqa.selenium.JavascriptExecutor;
Кто-нибудь может помочь с этим?