Exemple #1
0
        public void PopulateField(CreateToolInstancePopup.ToolInstanceFileds field, string value)
        {
            var el = this.Driver.Find(this.FieldsLocators[field]);

            el.SendKeys(Keys.Control + "a");
            el.SendKeys(Keys.Delete);
            if (value != null)
            {
                el.SendKeys(value);
            }
        }
 public string GetToolCreationFieldPlaceholder(CreateToolInstancePopup.ToolInstanceFileds field)
 {
     return(App.Pages.ToolsPages.NewToolPopup.GetFiledPlaceFolder(field));
 }
Exemple #3
0
 public string GetFiledPlaceFolder(CreateToolInstancePopup.ToolInstanceFileds field)
 {
     return(Driver.Find(this.FieldsLocators[field]).GetAttribute("placeholder"));
 }