I have a variable called “TotalCosts” that has a numeric value of the sum of other variables - let’s say its value is 800. How would I make a manual-entry UI field “CostCalculation” have TotalCosts’ value in it so on the UI it’d be
CostCalculation: 800
From the threads I’ve searched through, either I’m looking up the wrong thing or I’m not quite understanding the syntax (or if I’m going about it all wrong).
I’ve tried the straightforward approaches of
WebUI.setText(findTestObject(‘CostCalculation’), TotalCosts)
WebUI.sendKeys(findTestObject(‘CostCalculation’), TotalCosts)
which definitely do not work. Any suggestions?