Udostępnij za pośrednictwem


Właściwość UITestControl.SearchProperties —

Pobiera wartość właściwości kolekcji pary, używany do identyfikowania formantu.

Przestrzeń nazw:  Microsoft.VisualStudio.TestTools.UITesting
Zestaw:  Microsoft.VisualStudio.TestTools.UITesting (w Microsoft.VisualStudio.TestTools.UITesting.dll)

Składnia

'Deklaracja
Public ReadOnly Property SearchProperties As PropertyExpressionCollection
public PropertyExpressionCollection SearchProperties { get; }
public:
property PropertyExpressionCollection^ SearchProperties {
    PropertyExpressionCollection^ get ();
}
member SearchProperties : PropertyExpressionCollection with get
function get SearchProperties () : PropertyExpressionCollection

Wartość właściwości

Typ: Microsoft.VisualStudio.TestTools.UITesting.PropertyExpressionCollection
Kolekcja pary wartość właściwości jest używany do identyfikowania formantu.

Przykłady

WinButton saveButton = new WinButton(window);
saveButton.SearchProperties.Add(WinProperties.Button.Name, “btnSave”);

Jeśli chcesz użyć Contains operatora

WinButton saveButton = new WinButton(window);
//If the name of the button contains “Save”, then it will be found.
saveButton.SearchProperties.Add(WinProperties.Button.Name, “Save”, PropertyExpressionOperator. Contains);

Wygenerowany kod będzie podobny do następującego:

Public WinButton BtnSaveButton
{
   get
   {
      if ((this.mBtnSaveButton == null))
         {
            this.mBtnSaveButton = new WinButton(this);
#region Search Criteria
            this.mBtnSaveButton.SearchProperties[WinProperties.Button.Name] = "btnSave";
#endregion
         }
return this.mBtnSaveButton;
   }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

UITestControl Klasa

Przestrzeń nazw Microsoft.VisualStudio.TestTools.UITesting