Failed to queue test run '<computer name> <time>':
Method not found: 'Void Microsoft.VisualStudio.TestTools.Agent.AgentProcessManager.SetCurrentPlatform(System.Reflection.ProcessorArchitecture, Microsoft.VisualStudio.TestTools.Common.AssemblyClrVersion)' Hello.
Our product hardly used RichFaces elements but WebAii cannot click on them.
for example (more important problem): Webaii can find node in RichFacess tree but it can't click on natively. Just nothing happens.
I can click with .MouseClick(MouseClickType.LeftDoubleClick) but it works only sometimes.
System.Threading.
Thread.Sleep(1000);
Element input2 = myManager.ActiveBrowser.Find.ByTagIndex("table", 0);
myManager.ActiveBrowser.Actions.ScrollToVisible(input2);
myManager.ActiveBrowser.Desktop.Mouse.Click(
MouseClickType.RightClick,0,150);
myManager.ActiveBrowser.Desktop.Mouse.Click(
MouseClickType.RightClick, 0, 150);
System.Threading.
Thread.Sleep(500);
System.Drawing.
Rectangle Coor3 = input2.GetRectangle();
Coor3.X = Coor3.X + 10;
Coor3.Y = Coor3.Y + 10;
myManager.ActiveBrowser.Actions.ScrollToVisible(input2);
myManager.ActiveBrowser.Desktop.Mouse.Click(
MouseClickType.LeftClick, 10,240);
SaveAsDialog saveas3 = SaveAsDialog.CreateSaveAsDialog(myManager.ActiveBrowser, DialogButton.SAVE, "C:\Test", myManager.Desktop );
myManager.DialogMonitor.AddDialog(saveas3);
try
{
saveas3.WaitUntilHandled(10000);
myManager.DialogMonitor.RemoveDialogs();
}
catch
{
}
var foundPopup = popup.VisualTree.Find.ByExpression(new XamlFindExpression("TextContent=Cannot delete ABC"));