I'm trying to use WinAppDriver and Java. Any simple excercise was gone and I tried to automate Excel. But I have a problem to serf between cells. This is my code:
System.out.println("Before Заполнить яч A5");
exSession.findElementByAccessibilityId("A5").click();
exSession.findElementByAccessibilityId("FormulaBar").sendKeys("10");
exSession.findElementByAccessibilityId("B7").click();
exSession.findElementByAccessibilityId("FormulaBar").sendKeys("20");
System.out.println("Before Заполнить яч B8");
exSession.findElementByAccessibilityId("B8").sendKeys("30");
Here I want to put diff info to the cells of Excel: "10" to A5 cell, "20" put to B7 cell and "30" put to B8 cell.
In result - all of them was put to A5 cell, like this:
10+B72030
How to move from one cell to another?