I have a variable "row" set to a number generated by the random(number) function. I'm trying to put that variable inside an xpath expression:
"//*[contains(@layout=' " + row + " ')]"
However, no events are running when this block is reached. Is it because the variable type is still in a number format (int)? If so, how does one convert the type into string. Thanks in advanced.