在C#上尝试在Visual Studio中学习和自动化Win计算器时,我可以将按钮的值转换为字符串,但在从.csv文件中读取数据时,不能使用数学符号/操作数:
this.UIMap.Click(TestContext.DataRow["Left"].ToString());
this.UIMap.Click(TestContext.DataRow["Oper"].ToString()); <<< this should read operands
this.UIMap.Click(TestContext.DataRow["Right"].ToString());
this.UIMap.ClickEquals();
this.UIMap.AssertEqualsExpectedValues.UIItem11TextDisplayText =
TestContext.DataRow["Res"].ToString();`
请问如何处理?