Table of Contents

Interface IEditField

An edit object in a mobile application.

Inherited Members
ITestObject.GetDescription()
ITestObject.SetDescription(IDescription)
ITestObject.FindChildren<TChild>(IDescription)
ITestObject.Exists()
ITestObject.Exists(uint)
ITestObject.GetSnapshot()
ITestObject.Highlight()
ITestObject.HighlightMatches<TChild>(IDescription)
ITestObject.GetTextLocations(string)
ITestObject.GetTextLocations(string, Rectangle)
ITestObject.GetVisibleText()
ITestObject.GetVisibleText(Rectangle)
ITestObject.VerifyImageExists(Image, byte)
ITestObject.VerifyImageMatch(Image, byte, byte)
ITestObject.VerifyImageMatch(Image, ImageMaskArea, byte, byte)
ITestObject.CallFTMethod(string, params object[])
ITestObject.CallFTMethod<TResult>(string, params object[])
ITestObject.Parent
ITestObject.DisplayName
ITestObjectDescriber.Describe<TChild>(IDescription)
IUiObjectBase.Tap()
IUiObjectBase.Tap(TapArgs)
IUiObjectBase.LongPress()
IUiObjectBase.LongPress(LongPressArgs)
IUiObjectBase.Swipe(SwipeDirection)
IUiObjectBase.Swipe(SwipeDirection, SwipeArgs)
IUiObjectBase.Pan(Location, Location)
IUiObjectBase.Pan(Point, Point)
IUiObjectBase.Pan(Point, Point, PanArgs)
IUiObjectBase.Pinch(double)
IUiObjectBase.Pinch(double, PinchArgs)
IUiObjectBase.Location
IUiObjectBase.AccessibilityId
IUiObjectBase.ClassName
IUiObjectBase.Container
IUiObjectBase.IsClickable
IUiObjectBase.IsFocused
IUiObjectBase.IsFocusable
IUiObjectBase.NativeClass
IUiObjectBase.ResourceId
IUiObjectBase.Size
IUiObjectBase.IsCheckable
IUiObjectBase.IsChecked
IUiObjectBase.Text
IUiObjectBase.Hint
IUiObjectBase.MobileCenterIndex
IEnabledProvider.IsEnabled
Namespace: HP.LFT.SDK.Mobile
Assembly: HP.LFT.SDK.dll
Syntax
public interface IEditField : ITestObject, ITestObjectDescriber, IUiObjectBase, IEnabledProvider

Properties

IsPassword

Indicates whether this mobile edit object is a password box. (Android only)

Declaration
bool IsPassword { get; }
Property Value
Type Description
bool

Methods

SetFocus()

Brings the edit box into focus.

Declaration
void SetFocus()

SetSecure(string)

Sets the encoded value of this edit box.

Declaration
void SetSecure(string encodedText)
Parameters
Type Name Description
string encodedText

The encoded text to enter in this edit box.

Remarks

Generate the encoded value using the Password Encoder utility, available from the OpenText Functional Testing for Developers > Tools menu in your IDE or from the Windows Start menu.

Note: The SetSecure method enables you to hide passwords displayed on the screen while running or editing a test, but it is not intended to be a secure way to protect password information.

SetText(string)

Sets the specified text in the edit box.

Declaration
void SetText(string text)
Parameters
Type Name Description
string text

The text to enter in the edit box.

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)