ITestee Methods
AddFilter
Adds a global image processing filter. All filters will be applied to the current screen of the subject under test before further processing (image recognition, ocr) takes place.
Syntax:
Parameter
Description
filter
ClearFilter
Removes all globally registered image processing filters.
Syntax:
FindImage
Executes an image search (single result) on the subject under test.
How TestResults.io works with image references:
The engine will try to find the image that is specified by imageName or all images contained in the folder (incl subfolders) specified by imageName.
imageName refers to the relative location within the Images directory of the project, folders are separated by dots. E.g. "Screens.MyScreen.MyImage"
.
However the designer automatically generates classes so you can use intelliSense to specify the image, the same image would be provided with TestImages.MyProject.Images.Screens.MyImage
or just Images.Screens.MyImage
if the correct using is set.
Syntax:
Parameter
Description
imageName
[searchDuration]
[parameters]
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the image will be searched for
Return Value: Returns an IEngineResult with the position where the image was found
FindImages
Executes an image search (multiple results) on the subject under test.
Syntax:
Parameter
Description
imageName
[searchDuration]
[parameters]
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the image will be searched for
Return Value: Returns a list of IEngineResult with all positions where the image was found
FindText
Executes a text search (single result) on the subject under test
Syntax:
Parameter
Description
content
[searchDuration]
[parameters]
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the text is search for
Return Value: Returns an IEngineResult with the position, detected text and corresponding accuracy where the specified text was found as a best match, i.e. highest accuracy
FindTexts
Executes a text search (multiple results) on the subject under test
Syntax:
Parameter
Description
content
[searchDuration]
[parameters]
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the text is search for
Return Value: Returns a list of IEngineResults with all positions, detected text and corresponding accuracy where the specified text was found.
GetCurrentScreen
Returns the screen of the currently active SUT.
Syntax:
Parameter
Description
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen before the image is taken
Returns a Bitmap of the filtered current screen.
GetRemoteClipboard
Overload List
Name
Description
GetRemoteClipboard (int?)
Returns the clipboard content of the subject under tests.
GetRemoteClipboard (bool, int?)
Returns the clipboard content of the subject under tests.
GetRemoteClipboard (int?)
Returns the clipboard content of the subject under tests. The method waits until the subject under test signals that there is new content in its clipboard. If the subject under test signals the availablity of new content before this method is called the call will return instantly with the information of the remote clipboard. If no new content is received during waitTimeout, the last content that was received is returned.
Note that for most VNC servers no new content is signaled, when the same content is copied again, or an empty text selection is copied.
Syntax:
Parameter
Description
[waitTimeout]
Return Value: The content of the SUT clipboard.
GetRemoteClipboard (bool, int?)
Returns the clipboard content of the subject under tests. The method waits until the subject under test signals that there is new content in its clipboard. If the subject under test signals the availablity of new content before this method is called the call will return instantly with the information of the remote clipboard. If no new content is received during waitTimeout, the last content that was received is returned, but wasTimeoutTriggered is set to true.
Note that for most VNC servers no new content is signaled, when the same content is copied again, or an empty text selection is copied.
Syntax:
Parameter
Description
wasTimeoutTriggered
Set to true if the provided timeout passed. To make sure that you got the most accurate content, you can check this property
[waitTimeout]
Return Value: The content of the SUT clipboard.
GetText
Reads the text on the screen of the subject under test
Syntax:
Parameter
Description
[parameters]
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the text is to be found
Return Value: Returns all text found on the current screen
RefreshScreen
Forces the internal data structure to be updated with a new screenshot from the subject under test
Syntax:
RegisterForUpdateCheck
Registers a callback for graphical updates from the SUT. Must be unregistered afterwards by calling UnregisterFromUpdateCheck with the corresponding GUID. Use t.WaitUntilStableScreen or t.WaitUntilScreenUpdate for easier use of this functionality.
Syntax:
Parameter
Description
updateHandler
Method to call once an update happens
allowedEuclideanDistance
Defines how much of the reference image can be changed
filters
Specifies a collection of possible filters that are used to pre-process the current screen image before the screenshot is taken
Return Value: Returns a GUID to identify the callback that has to be provided when unregistering.
SaveImage
Saves an image with the specified name and additional information which might be setup via the global properties
Syntax:
Parameter
Description
image
Image to save
name
Specifies the base name of the image
persistedName
Contains the fully qualified name, generated by the TestResults.io runner
SetRemoteClipboard
Sets the clipboard content of the subject under test
Syntax:
Parameter
Description
content
Information to put into the remote clipboard
TakeScreenshot
Takes a screenshot and saves it with the specified name and additional information which might be setup via the global properties.
Syntax:
Parameter
Description
name
Specifies the base name of the screenshot
[filters]
Specifies a collection of possible filters that are used to pre-process the current screen image before the screenshot is taken
UnregisterFromUpdateCheck
Unregisters a callback for graphical updates from the SUT.
Syntax:
Parameter
Description
updateCheckId
Identifier received while registering the update check
Last updated