共用方式為


ExtractAttributeValue.AttributeName 屬性

取得或設定值,此值代表具有可擷取值之屬性的名稱。

命名空間:  Microsoft.VisualStudio.TestTools.WebTesting.Rules
組件:  Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)

語法

'宣告
Public Property AttributeName As String
public string AttributeName { get; set; }
public:
property String^ AttributeName {
    String^ get ();
    void set (String^ value);
}
member AttributeName : string with get, set
function get AttributeName () : String
function set AttributeName (value : String)

屬性值

型別:System.String
屬性的名稱。

備註

這是用來識別您想要擷取之值的屬性。假設有下列 HTML:

<input name="MyTextBox" type="text" id="TextBox1" />

<input type="submit" name="Button1" value="Button" id="Button1" />

如果您想要擷取 id 屬性 (Attribute) 值,請將 TagName 屬性 (Property) 設定為 input 並將 AttributeName 屬性設定為 id。

這樣就會傳回 TextBox1 值,因為 TextBox1 是第一個找到之 input 標記中的 id 值。若要從第二個標記擷取 id,請參閱 MatchAttributeNameMatchAttributeValue

.NET Framework 安全性

請參閱

參考

ExtractAttributeValue 類別

Microsoft.VisualStudio.TestTools.WebTesting.Rules 命名空間