Testing a Flex Custom Control Using Dynamic Invoke

Silk Test Workbench provides record and playback support for custom controls using dynamic invoke to interact with the custom control during replay. Use this low-effort approach when you want to access properties and methods of the custom control in the test application that Silk Test Workbench does not expose. The developer of the custom control can also add methods and properties to the custom control specifically for making the control easier to test.

Note: You can use dynamic invoke with scripts. Dynamic invoke is not available in visual tests.
  1. To retrieve a list of supported dynamic methods for a control, use the GetDynamicMethodList method.
  2. Call dynamic methods on objects with the Invoke method.
  3. Call multiple dynamic methods on objects with the InvokeMethods method.
  4. Call multiple dynamic methods on objects with the invokeMethods method.
  5. To retrieve a list of supported dynamic properties for a control, use the GetPropertyList method.
  6. Retrieve dynamic properties with the GetProperty method and set dynamic properties with the SetProperty method.

Example

The following example tests a spinner custom control that includes two buttons and a textfield, as shown in the following graphic.

Flex custom control

The user can click Down to decrement the value that is displayed in the textfield and click Up to increment the value in the textfield.

The custom control offers a public "Value" property that can be set and retrieved.

To set the spinner's value to 4, type the following:
Dim spinner = Desktop.Find("//FlexBox[@className=customcontrols.Spinner]")
spinner.SetProperty("Value", 4)