ContributionsMost RecentMost LikesSolutionsgenerating random strings from script Greetings, I would like know if it's possible to generate a random string from script every time i run the test and use it to fill the text field on the web. I'm using JScript. Regards SolvedRe: JScript - Addition behavior in scripted tests Thank you both for the help - it worked :) JScript - Addition behavior in scripted tests Hello, I have a rookie question about behavior of addition operation. I would like to take a value A (example: 100) from a text field and then add value B (example: 10) to value A and write sum of these into this text field. However, when i execute the code below i receive this (based on the values above): 10010 instead of 110. var x = obj.wText; obj.SetText(x + 10) // i used aqConvert.StrToInt(x); but this didn't work When i perform the subtraction operation it writes the correct value (90). How can i resolve this probably easy problem? Solved