Remove timeout from ClickByName

This commit is contained in:
John Lewin 2017-06-14 09:56:51 -07:00
parent 09329bcc02
commit 1109b7b4ab
15 changed files with 127 additions and 127 deletions

View file

@ -24,7 +24,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
string firstItemName = "Queue Item Batman";
//Navigate to Downloads Library Provider
testRunner.ClickByName("Queue Tab");
testRunner.ClickByName("Queue Add Button", 2);
testRunner.ClickByName("Queue Add Button");
//Get parts to add
string rowItemPath = MatterControlUtilities.GetTestItemPath("Batman.stl");
@ -42,7 +42,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
testRunner.Delay(2);
testRunner.WaitForName("Export Item Window", 2);
testRunner.ClickByName("Export as GCode Button", 2);
testRunner.ClickByName("Export as GCode Button");
testRunner.Delay(2);
string gcodeOutputPath = MatterControlUtilities.PathToExportGcodeFolder;