1.AppendContentAction
SimpleText text = new SimpleText("tes内容")
AppendContentAction action = new AppendContentAction("num", text);
num 页面元素的id,text就是文本内容
功能:在指定的元素中添加文本内容
2.ReplaceContentAction
SimpleText text = new SimpleText("tes内容")
ReplaceContentActionaction = new ReplaceContentAction("num", text);
num 页面元素的id,text就是文本内容
功能:在指定的元素中替换其中的文本内容
3.RemoveContentAction
ReplaceContentActionaction = new ReplaceContentAction("num");
num 页面元素的id,text就是文本内容
功能:在指定的元素中删除元素中的内容
4.replaceElement
InputField field = new InputField("replaced", "Replaced", InputField.InputType.TEXT);
ReplaceElementAction action = new ReplaceElementAction("toReplace", field);
功能