Method SetValue
Sets value into the current Iteration row of a Datatable parameterUsage
Function Datatable.SetValue(
String Name,
Object Value
)
Parameters
Name
Type: String
The name of the parameter (column name)
Value
Type: Object
The value to set
Returns
No return value
Example
VBScript
Application("Demo").View("DemoView").Object("txtUsername").SetProperty "text", Datatable.Value("Username")
Application("Demo").View("DemoView").Object("btnGetPhoneByUsername").Click
phoneNumber = Application("Demo").View("DemoView").Object("Phone").GetProperty("text")
Datatable.SetValue "Phone", phoneNumber
JavaScript
Application("Demo").View("DemoView").Object("txtUsername").SetProperty("text", Datatable.Value("Username"));
Application("Demo").View("DemoView").Object("btnGetPhoneByUsername").Click();
var phoneNumber = Application("Demo").View("DemoView").Object("Phone").GetProperty("text");
Datatable.SetValue("Phone", phoneNumber);
Comment
Get Text property from object and save it to datatable