Forum Discussion
5 Replies
Hi Subhasis,
Could you please share the solution you found? It may help Ravi and other TestComplete users!
- RavikSuper ContributorHi Tanya,
In VbScript we can set the variable data like below -
Otp = RS("notp")
Sys.Process("iexplore", 2).Page("textboxpath").SetText(aqConvert.varToStr(Otp))
using like above script, I am able to assigned value . - RavikSuper ContributorI also need the help for same ??
Hi Guys,
For JScript, it will look like this:
var page = Sys.Process("iexplore", 2).Page("textboxpath");
var obj = page. // ...obtain the object here
obj.SetText("(\"Otp\")");
- bloodycriticNew ContributorTanya!!
I asked for VBscript and not javascript
anyway, i found the solution