hi i am sorry if it’s too basic,
I want to print global value using “println” but why its print the name instead?
why its not print the “standard_user”?
another case:
List<WebElement> ItemList = WebUI.findWebElements(findTestObject('Object Repository/List_Item'), 10)
for (data in ItemList) {
println data.getText()
}
Result:
- for (def data : webItemHargaList)
-
- println(data.getText()) (0.014s)*
-
- println(data.getText()) (0.014s)*
-
- println(data.getText()) (0.014s)*
-
- println(data.getText()) (0.014s)*
is it intended? i want to print the list not the command
