Hello,
I have a datatable, dtTest, which contains multiple rows, each with 3 columns. In production, this number of rows will be dynamic, depending on an incoming excel template, so it can’t be hard-coded, but the columns will always be the same.
What I’m trying to do is:
Log into web URL
FOR EACH ROW → click through some menus/dropdowns and then input the values from the current row’s columns into their respective text boxes.
Is there a way to specify “current row” in an expression like:
TYPE INTO → dtTest.Rows(0).Item(1).ToString
Feel free to point me to a different thread if this is redundant. I searched a bit but didn’t find what I was looking for.
Thanks,
Andrew