I have a question, I’ve got a CSS selector that returns back a list of input objects (all text inputs) and I’d like to easily set the values to them.
I’d like to be able to do something like this: (assume that addressTextFields is a collection of only html text inputs)
// currently this assigns each field as the String "["New","Belgium",".........
addressTextFields = ["New", "Belgium", "500 Linden Street", "Suite 200", "Fort Collins", "98026", "970-111-2222"]
or
// Fails to compile since the cast between ArrayList and WebElement isn't possible...though, I like the syntax :-)
addressTextFields << ["New", "Belgium", "500 Linden Street", "Suite 200", "Fort Collins", "98026", "970-111-2222"].each { it -> it }
any thoughts on how to assign values to the text field?