コード例 #1
0
        public static string CreateChildFolder(this AutomationRunner testRunner, string folderName)
        {
            testRunner.InvokeLibraryCreateFolderDialog();
            testRunner.WaitForName("InputBoxPage Action Button");
            testRunner.Type(folderName);
            testRunner.ClickByName("InputBoxPage Action Button");

            string folderID = $"{folderName} Row Item Collection";

            Assert.IsTrue(testRunner.WaitForName(folderID), $"{folderName} exists");

            return(folderID);
        }