I don't think its possible to declare the value of a constant from data table. When you declare a constant, you have to implicitly specify the value of that constant.
Say for example that you have "gmail.com" as value in column "A" row "1".
You cant simply declare,
you have to literally specify the value which the constant is gonna hold which will be
"
---
i would suggest you to use external environment variable file to store the values and access them thru code.
Let me know if you need any help.
Thanks,
Elango
Say for example that you have "gmail.com" as value in column "A" row "1".
You cant simply declare,
Code:
const mybrowser = Datatable.Value("A",1)you have to literally specify the value which the constant is gonna hold which will be
Code:
const mybrowser = "gmail.com---
i would suggest you to use external environment variable file to store the values and access them thru code.
Let me know if you need any help.
Thanks,
Elango

