コード例 #1
0
        public void DBCreationStep_1(string ActivationAppTitle, string Text, string _btnNextControl, string _panelId, string _selectionMessage, string controlSqlServer, string SQLServer, string controlDBName, string DatabaseName, string controlRadioButton, string radioselectionMessage, string controlSqlUsername, string SQLServerUsername, string controlSqlPass, string SqlPassword)
        {
            //helper.Sleep(5000);
            helper.ControlSetText(ActivationAppTitle, SQLServer, controlSqlServer, _panelId, _selectionMessage);
            helper.ControlSetText(ActivationAppTitle, DatabaseName, controlDBName, _panelId, _selectionMessage);

            helper.SelectRadioButton(ActivationAppTitle, controlRadioButton);

            helper.ControlSetText(ActivationAppTitle, SQLServerUsername, controlSqlUsername, _panelId, _selectionMessage);
            helper.ControlSetText(ActivationAppTitle, SqlPassword, controlSqlPass, _panelId, _selectionMessage);

            helper.ButtonClick(ActivationAppTitle, Text, _panelId, _btnNextControl, _selectionMessage);
            helper.Sleep(2000);
        }
コード例 #2
0
 public void SUWelcome(string AppTitle, string Text, string btnNext, string PanelID, string selectionMessage, string ControlToSelect)
 {
     helper.SelectRadioButton(AppTitle, ControlToSelect);
     helper.KeyPress(AppTitle, Text, btnNext, PanelID, selectionMessage, "{ALT down}{N}");
     helper.Sleep(1000);
 }