如何使用Selenium Webdriver中的xpath查找包含的文本的确切值?

时间:2019-03-26 11:13:49

标签: selenium xpath exact-match non-breaking-characters

我在使用xpath从代码中选择确切的文本“ Section”时遇到问题。

**为了清楚起见,我要求从元素的innerText或innerHTML中进行准确的文本选择,而不是id。 **

我能够使用contains文本功能,但是也会导致其他包含“ Section”的部分匹配也被返回/突出显示:


//div[@aria-hidden='false']//ul/li[contains(text(),'Section')]

我尝试使用以下方法,但是我不知道语法是否正确,因为没有返回/突出显示了


//div[@aria-hidden='false']//ul/li[text()='Section')]

//div[@aria-hidden='false']//ul/li[.='Section']

//div[@aria-hidden='false']//ul/li[normalize-space(.)='Section']

这是检查“节”节点时显示的内容:


<li id="GOS--/40" class="nodecollapsed item parent-node xh-highlight" style="" xpath="1">
                                Section&nbsp;<span class="child-count"></span>
                            </li>

这是元素属性中显示的内容:


id: "GOS--/40"
innerHTML: "↵                                Section&nbsp;<span class="child-count"></span>↵                            "
innerText: " Section "

以下是显示返回的其他部分匹配项的xml:

<div class="selection-list-dialog modal-dialog Dialog">
    <div class="modal-content">
        <div class="modal-header SectionHeader">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
            <span class="modal-title" data-lang="StandardItems">Standard Items</span>
        </div>
        <div class="modal-body selection-list-container" style="margin-top: 30px" id="base">
            <div>
                <span data-lang="SelectItemInstructions">Select the items you are interested in from the list.</span>
            </div>
            <br/>
            <div class="pull-left selection-tree-container">
                <h4 class="selection-list-title">
                    <span data-lang="Available">Available</span>                    
                </h4>
                <ul class="selection-list selection-tree-list">



                            <li id="CS--/14" class="nodecollapsed item parent-node">
                                Country Section&nbsp;<span class="child-count"></span>
                            </li>                        


                            <li id="Sec1--/23" class="nodecollapsed item parent-node">
                                Section 1&nbsp;<span class="child-count"></span>
                            </li>


                            <li id="Sec2--/24" class="nodecollapsed item parent-node">
                                Section 2&nbsp;<span class="child-count"></span>
                            </li>


                            <li id="GOS--/40" class="nodecollapsed item parent-node">
                                Section&nbsp;<span class="child-count"></span>
                            </li>


                            <li id="RS--/43" class="nodecollapsed item parent-node">
                                Regional Section&nbsp;<span class="child-count"></span>
                            </li>

5 个答案:

答案 0 :(得分:2)

这是一个艰难的过程。问题是您有许多类似的选项,都包含某种形式的“ Section”,很难将它们区分开。除此之外,每个字段都包含一个不间断的空格&nbsp;,这意味着normalize-space()也不会(直接)起作用。

但是...我发现下面的XPath可以工作。

//li[normalize-space()='Section\u00a0']

normalize-space()会删除空格(但不会删除&nbsp),因此必须在其中添加\u00a0。我已经在本地测试过,并且可以正常工作。

答案 1 :(得分:0)

尝试遵循xpath看看是否有帮助。

 //li[starts-with(@id,'GOS')][@class='nodecollapsed item parent-node xh-highlight']

OR

  //li[@class='nodecollapsed item parent-node xh-highlight'][@xpath='1']

答案 2 :(得分:0)

您可以尝试下面的XPath查找节节点

尝试是否有帮助

//li[@id='GOS--/40'][contains(text(),'Section')]

答案 3 :(得分:0)

让我把帽子扔进戒指。...

//li[(normalize-space(text()) = 'Section')]

答案 4 :(得分:0)

这里是仅从父级获取文本的方法。 (不包括孩子的文字)

在Python中:

def get_pure_element_text(element):
    return driver.execute_script(
        """
        var parent = arguments[0];
        var child = parent.firstChild;
        var textValue = "";
        while(child) {
            if (child.nodeType === Node.TEXT_NODE)
                    textValue += child.textContent;
                    child = child.nextSibling;
        }
        return textValue;""",
        element).strip()

此方法将迭代所有firstChild(直接子代)并从所有文本节点中提取所有文本。

在这种情况下:如果要检索ID为GOS--/40的li文本,请使用以下方法。

element = driver.find_element_by_xpath("//li[@id='GOS--/40']")
print(get_pure_element_text(element))   

共享此方法,至少可以帮助其他方法(如果在这种情况下不是OP)。

C#实现:(未经测试)

string get_pure_text(IWebDriver driver, IWebElement element){
IJavaScriptExecutor js = (IJavaScriptExecutor)driver;
    return (string)js.ExecuteScript(""""
        var parent = arguments[0];
        var child = parent.firstChild;
        var textValue = "";
        while(child) {
            if (child.nodeType === Node.TEXT_NODE)
                    textValue += child.textContent;
                    child = child.nextSibling;
        }
        return textValue;""",
        element");

用法:

string output = get_pure_text(driver,element)