06-26-2013, 11:20 PM
Code:
Browser("SomeName").Page("SomeName").WebEdit("QuickSearchTerm").Set DataTable("UserID", dtGlobalSheet)
I want to capture the UserID value from data table in to a variable , So, I have written this
Code:
Dim var
var=Browser("SomeName").Page("SomeName").WebEdit("QuickSearchTerm").Set DataTable("UserID", dtGlobalSheet)
But I am getting syntax error that this line needs end of statement
Is there any way to capture the above data table value in to a variable
Thanks in advance