Lagencie
7 years agoFrequent Contributor
Project Variable Table
Hello,
I have a question is there a way to create a permanent Table as Project Variable?
I know there is a way to create tables as ComponentTable during runtime with this code:
if Project.Variables.VariableExists("ComponentTable"): # Get a reference to the variable t = Project.Variables.VariableByName["ComponentTable"] else: Project.Variables.AddVariable("ComponentTable", "Table") t = Project.Variables.VariableByName["ComponentTable"]
But this way I have to always fill it during runtime and I want it to be filled with fixed values - on Project Variable Layer, not on Keyword Test Layer, where I can create tables.