I am automating a forms application using java driver marathon. I can launch the application from the automation code and navigate to following the blocked screen.
There is a table where I want to read the data, I have the decompiled java code with me. This method returns the focused row successfully.
driver.findElement(By.name("ListView229")).getAttribute("getFocusedRow");
getFocusedRow
is a java method I can call it like above.
Now I want to call the =>
public final String getCellData(int paramInt1, int paramInt2)
driver.findElement(By.name("ListView229")).getAttribute("getCellData(1,0)";
I used the above code but returns null, I can call the java methods which does not have parameters.
How I can call the java methods which have parameters?