public void dialogHandler()
        {
            //For some reason this FileDialogTester will work no matter what the dialog is actually named, and cannot be called off after being called once...
            FileDialogTester dialogTester = new FileDialogTester("");

            dialogTester.ClickCancel();
        }
Exemplo n.º 2
0
        // handles the openFileDailogs
        public void saveFileDialogHandler()
        {
            FileDialogTester dialogTester = new FileDialogTester("Save As");

            dialogTester.ClickCancel();
        }
Exemplo n.º 3
0
        // handles the openFileDailogs
        public void schemaFileDialogHandler()
        {
            FileDialogTester dialogTester = new FileDialogTester("Open");

            dialogTester.ClickCancel();
        }
Exemplo n.º 4
0
		public void CancelModal()
		{
			FileDialogTester x = new FileDialogTester("Browse For Folder");
			x.ClickCancel();
			ButtonTester t = new ButtonTester("Cancel");
			t.Click();
		}