Beispiel #1
0
        void InsertRadioButton(int index, bool disabled, string content = "Custom")
        {
            elements.GetCustomIndexTextBox().SetValue(index.ToString());
            if (disabled)
            {
                elements.GetCustomDisabledCheckBox().Check();
            }
            else
            {
                elements.GetCustomDisabledCheckBox().Uncheck();
            }
            elements.GetCustomContentTextBox().SetValue(content);

            elements.GetInsertDisplayRadioButtonButton().Click();
        }