If I have recorded an asseetion from VS2013 coded ui test recorder. The assertion verifies Things like,
- The name Field containst "Jeff" as name
- His age is "60" in age field or not
Now, let's say I already have a data.csv Connected and configured to solution. All I want to do now is to replace the assertion vlaue JEFF and 60 from certain values from my CSV file.
This is the code in background for assertion
Assert.AreEqual(this.name_assertionExpectedValues.UIEierPane1HelpText, uInamePane1.HelpText, "Cant find Name text label");
Can you tell me what will parametering look like in main CS file for this.
Just so that instead of comparing the expected value from my CSV file not the recorded string.
Thanks in advance.