如何根据搜索到的InnerText / Name知道控件ID

时间:2015-05-12 10:29:21

标签: visual-studio-2012 automated-tests coded-ui-tests

public class UIRow0jqxGrid1Pane : HtmlDiv
    {

        public UIRow0jqxGrid1Pane(UITestControl searchLimitContainer) : 
                base(searchLimitContainer)
        {
            #region Search Criteria
            this.SearchProperties[HtmlDiv.PropertyNames.Id] = "row0jqxGrid1";//This ID will be dynamic. Need to search based on provided InnerText
            this.SearchProperties[HtmlDiv.PropertyNames.Name] = null;
            this.FilterProperties[HtmlDiv.PropertyNames.InnerText] = "XXXX";
            this.FilterProperties[HtmlDiv.PropertyNames.Title] = null;
            this.FilterProperties[HtmlDiv.PropertyNames.Class] = null;
            this.FilterProperties[HtmlDiv.PropertyNames.ControlDefinition] = "id=\"row0jqxGrid1\" role=\"row\" style=\"height: 25px; ;\"";
            this.FilterProperties[HtmlDiv.PropertyNames.TagInstance] = "696";
            this.WindowTitles.Add("Test");
            #endregion
        }

        #region Properties
        public HtmlDiv UIALMONDESTATECONSULTAPane
        {
            get
            {
                if ((this.mUIALMONDESTATECONSULTAPane == null))
                {
                    this.mUIALMONDESTATECONSULTAPane = new HtmlDiv(this);
                    #region Search Criteria
                    this.mUIALMONDESTATECONSULTAPane.SearchProperties[HtmlDiv.PropertyNames.Id] = null;
                    this.mUIALMONDESTATECONSULTAPane.SearchProperties[HtmlDiv.PropertyNames.Name] = null;
                    this.mUIALMONDESTATECONSULTAPane.FilterProperties[HtmlDiv.PropertyNames.InnerText] = "XXXX";
                    this.mUIALMONDESTATECONSULTAPane.FilterProperties[HtmlDiv.PropertyNames.Title] = null;
                    this.mUIALMONDESTATECONSULTAPane.FilterProperties[HtmlDiv.PropertyNames.Class] = null;
                    this.mUIALMONDESTATECONSULTAPane.FilterProperties[HtmlDiv.PropertyNames.ControlDefinition] = "style=\"text-align: left;  padding-bottom: 2px; margin- " +
                        "margin-right: 2px; margin- -ms-text-\"";
                    this.mUIALMONDESTATECONSULTAPane.FilterProperties[HtmlDiv.PropertyNames.TagInstance] = "700";
                    this.mUIALMONDESTATECONSULTAPane.WindowTitles.Add("Test;
                    #endregion
                }
                return this.mUIALMONDESTATECONSULTAPane;
            }
        }
        #endregion

        #region Fields
        private HtmlDiv mUIALMONDESTATECONSULTAPane;
        #endregion
    }

场景____从网格中选择项目时生成的上述代码。我注意到项目在网格中被标识为“窗格”。现在针对不同的场景,我必须选择不同的项目。我的所有输入值都存储在一个文件中,我从中获取一个值并传递给测试方法。

我想要什么____我需要根据我提供的值找到网格的行ID,以便在该行上点击鼠标。

我做了什么____网格填充从数据库中检索数据。所以我不能假设哪个值会有什么行id。我已经更改了InnerText SearchProperty,但随后播放停止并且测试失败。

我在HTML中注意到____ HTML结构就是这个

<grid id="grid1" style="....">
  <div>Header Row definition</div>
  <div> Data Row
    <div id="gridRow0" style="...">A</div>
    <div id="gridRow1" style="...">B</div>
    <div id="gridRow2" style="...">C</div>
    <div id="gridRow3" style="...">D</div>
    .......
    ......
  </div>
</grid>

请给出一些解决方案......我没有找到任何线索......

感谢您的时间......

1 个答案:

答案 0 :(得分:0)

我会重构你的代码。您已经在HTML中获得了行的ID,所以让我们使用它。 TestBuilder往往使事情变得更难以阅读,并且包含太多属性以使搜索变得高效或有意义。

因此,您的.uitest文件有两个子类:.designer.cs(上面的代码所在的位置)和.cs文件。打开.cs文件并通过执行以下操作找到您的行:

public HtmlDiv gridRow(int index)
{
     HtmlDiv target = new HtmlDiv(browser);
     target.SearchProperties.Add(HtmlDiv.PropertyName.Id, "gridRow" + index.ToString());
     return target;
}

然后,在你的测试中,如果你想获得某一行,只需调用myMap.gridRow(2)来获取该特定行的HtmlDiv。

然后,如果您有一个超链接,例如,在该行中,您将在地图中创建对象:

public HtmlHyperlink linkOnRow(int index)
{
    HtmlHyperlink target = new HtmlHyperlink(gridRow(index));
    target.SearchProperties.Add(HtmlHyperlink.PropertyNames.[your prop], [your value]);
    return target;
}

但是,如果你想使用innerText,你只需将PropertyName.Id更改为PropertyName.InnerText并使用其值。