wFieldCount Property (Specific to iOS AlertView Object)

Applies to TestComplete 15.63, last modified on April 23, 2024
This property is available in legacy mobile tests that work with devices connected to the local computer. To learn how to simulate user actions in newer cloud-compatible mobile tests, see the Simulating user actions in tests section.

Description

Use the wFieldCount property to obtain the total number of fields on the alert view.

Declaration

TestObj.wFieldCount

Read-Only Property Integer
TestObj A variable, parameter or expression that specifies a reference to one of the objects listed in the Applies To section

Applies To

The property is applied to the following object:

View Mode

This property is available in the Object Browser panel and in other panels and dialogs in both Basic and Advanced view modes.

Property Value

An integer value holding the total number of control’s fields.

Example

The following example gets all field in an alert view and posts their text to the log.

JavaScript, JScript

function Test()
{
  // Select the mobile device
  Mobile.SetCurrent("iPhone");
  // Obtain the AlertView object
  var p = Mobile.Device().Process("SampleApp");
  var alertview = p.Window(2).AlertView("Alert title");
  
  for (var i=0; i<alertview.wFieldCount;i++)
    Log.Message(alertview.wFieldText(i));
}

Python

def Test():
  # Select the mobile device
  Mobile.SetCurrent("iPhone")
  # Obtain the AlertView object 
  p = Mobile.Device().Process("SampleApp")
  alertview = p.Window(2).AlertView("Alert title")
  
  for i in range (0, alertview.wFieldCount):
    Log.Message(alertview.wFieldText[i])

VBScript

Sub Test()
  Dim p, AView
  ' Select the mobile device
  Mobile.SetCurrent("iPhone")
  ' Obtain the tableview object
  Set p = Mobile.Device.Process("SampleApp")
  Set AView = p.Window(2).AlertView("Alert title")
  
  For i = 0 To AView.wFieldCount-1
    Log.Message(AView.wFieldText(i))
  Next
End Sub

DelphiScript

procedure Test();
var
  p, alertview, i;
begin
  // Select the mobile device
  Mobile.SetCurrent('iPhone');
  // Obtain the AlertView object
  p := Mobile.Device.Process('SampleApp');
  alertview := p.Window(2).AlertView('Alert title');
  
  for i := 0 to alertview.wFieldCount-1 do
    Log.Message(alertview.wFieldText(i));
end;

C++Script, C#Script

function Test()
{
  // Select the mobile device
  Mobile["SetCurrent"]("iPhone");
  // Obtain the AlertView object
  var p = Mobile["Device"].Process("SampleApp");
  var alertview = p["Window"](2)["AlertView"]("Alert title");
  
  for (var i=0; i<alertview["wFieldCount"];i++)
    Log["Message"](alertview["wFieldText"](i));
}

See Also

iOS AlertView Support
Getting the Number of Alert View's Buttons and Fields
wFieldText Property (Specific to iOS AlertView Object)

Highlight search results