Hello,
I viewed
this post and it seems that the solution that will fit my needs will be to create my own C# code file and include within the project. I am stuck on a couple minor (hopefully) issues.
- I am using a step to grab data from the data bind, however I am getting a compile error: "The name 'Data' does not exist in the current context." Am I missing a USING statement? I had this step working when using a Script Step, so I copied all of the using statements from that file, but the error still exists.
- Same issue as above for 'ActiveBrowser'.
- In a Script Step, to access the methods and properties from my created code file, what is the proper call? I have experimented with several options and just can't figure it out. (i.e. would it be CodeFileName.ClassName.MethodName() or do i need a seperate USING statement?
EDIT 2:30pm CT -- I solved my third bullet by declaring all methods static in my code file. I'm still stuck on the first two errors, of which now 'Log.WriteLine' has been added to the list!