我使用TestStack.White作为c#的UI自动化,我遇到了问题。
我需要单击另存为按钮,但Visual UI告诉我它没有AutomationId。
我目前的代码是
Application manager = Application.Launch("PATH");
Window mainWindow = manager.GetWindow("ReportViewer");
mainWindow.Get<Button>(SearchCriteria.ByText("Save As")).Click();
我收到错误消息,说找不到按钮
有没有解决方法呢?