public static class SAFSPlus.EditBox extends SAFSPlus.Component
Constructor and Description |
---|
EditBox() |
Modifier and Type | Method and Description |
---|---|
static boolean |
SetTextCharacters(Component editbox,
java.lang.String value)
Set the text of edit box with verifying.
|
static boolean |
SetTextValue(Component editbox,
java.lang.String value)
Enter text value to EditBox with verifying.
|
static boolean |
SetUnverifiedTextCharacters(Component editbox,
java.lang.String value)
Set the text of edit box without verifying.
|
static boolean |
SetUnverifiedTextValue(Component editbox,
java.lang.String value)
Enter text value to EditBox without verifying.
|
AltClick, AltLeftDrag, AssignPropertyVariable, CaptureObjectDataToFile, CapturePropertiesToFile, CapturePropertyToFile, ClearCache, Click, CtrlAltLeftDrag, CtrlClick, CtrlLeftDrag, CtrlRightClick, CtrlShiftLeftDrag, DoubleClick, DragTo, ExecuteScript, GetComputedStyle, GetGUIImage, GetTextFromGUI, GUIDoesExist, GUIDoesNotExist, HoverMouse, HoverScreenLocation, InputCharacters, InputKeys, IsPropertyExist, IsPropertyExist, LeftDrag, LocateScreenImage, RightClick, RightDrag, SaveTextFromGUI, ShiftClick, ShiftLeftDrag, ShowOnPage, TypeChars, TypeEncryption, TypeKeys, VerifyBinaryFileToFile, VerifyComputedStyle, VerifyFileToFile, VerifyGUIImageToFile, VerifyObjectDataToFile, VerifyPropertiesSubsetToFile, VerifyPropertiesToFile, VerifyProperty, VerifyPropertyContains, VerifyPropertyContains, VerifyPropertyToFile, VerifyTextFileToFile, VerifyValueContains, VerifyValueContainsIgnoreCase, VerifyValueDoesNotContain, VerifyValues, VerifyValuesIgnoreCase, VerifyValuesNotEqual
public static boolean SetTextCharacters(Component editbox, java.lang.String value)
editbox
- org.safs.model.Component, the component(from App Map) editbox being set the content.value
- text String, value of setting content.SAFSPlus.prevResults
,
TestRecordData.getStatusCode()
,
TestRecordData.getStatusInfo()
boolean success = EditBox.SetTextCharacters(Map.Google.Combobox1, "textvalue");
public static boolean SetUnverifiedTextCharacters(Component editbox, java.lang.String value)
editbox
- org.safs.model.Component, the component(from App Map) editbox being set the content.value
- text String, value of setting content.SAFSPlus.prevResults
,
TestRecordData.getStatusCode()
,
TestRecordData.getStatusInfo()
boolean success = EditBox.SetUnverifiedTextCharacters(Map.Google.Combobox1, "textvalue");
public static boolean SetTextValue(Component editbox, java.lang.String value)
editbox
- org.safs.model.Component, the component(from App Map) editbox being set the content.value
- text String, value of setting content.SAFSPlus.prevResults
,
TestRecordData.getStatusCode()
,
TestRecordData.getStatusInfo()
boolean success = EditBox.SetTextValue(Map.Google.Combobox1, "textvalue");
2. Set special key "^(v)", which means "Ctrl + v", into Map.Google.Combobox1 with verification.
boolean success = EditBox.SetTextValue(Map.Google.Combobox1, "^(v)");
public static boolean SetUnverifiedTextValue(Component editbox, java.lang.String value)
editbox
- org.safs.model.Component, the component(from App Map) editbox being set the content.value
- text String, value of setting content.SAFSPlus.prevResults
,
TestRecordData.getStatusCode()
,
TestRecordData.getStatusInfo()
boolean success = EditBox.SetUnverifiedTextValue(Map.Google.Combobox1, "textvalue");
2. Set special key "^(v)", which means "Ctrl + v", into Map.Google.Combobox1 without verification..
boolean success = EditBox.SetUnverifiedTextValue(Map.Google.Combobox1, "^(v)");
Copyright © SAS Institute. All Rights Reserved.