08-02-2010, 02:43 PM
My data table is like following,
Browser Page type value
Login Login Link Help_link
Browser,Page,type,value names are column names and the values for those are Login,Login,Link,Help_link
I am storing the values in variables,
here i am writing a command using the above values
When I run the code it fails, because it replace the above line as
Here I need to remove the quotes for Link.
Thanks!
Browser Page type value
Login Login Link Help_link
Browser,Page,type,value names are column names and the values for those are Login,Login,Link,Help_link
I am storing the values in variables,
Code:
strBrowser = DataTable("Browser","Action1")
strPage = DataTable("Page","Action1")
strType = DataTable("Link","Action1")
strValue = DataTable("value","Action1")
here i am writing a command using the above values
Code:
Browser(strBrowser).Page(strPage).strType(strValue).Click
When I run the code it fails, because it replace the above line as
Code:
Browser("Login").Page("Login")."Link"("Help_link").Click
Here I need to remove the quotes for Link.
Thanks!