I am using UFT to load a set of URLs. Each URL has a unique number which i am passing through datatable. This unique number is at the end of the URL (suffix).
After loading each URL, i need to take screenshot.
My issue is with loading the URL. It wont load.
sample URL: https://www.pslmssn.com/USPExceptions/id=46465
code
abc=https://www.pslmssn.com/USPExceptions/id={unique id}
Dim p
For p = 1 to 100
Datatable.SetCurrentRow(p)
Browser("KAJL").WinEdit("URL").Set ("abc"& DataTable("UniqueID", dtGlobalSheet))
Anything i need to add/update in code. Would appreciate suggestions