3

我正在尝试单击此日历并使用 selenium 自动插入日期,但出现以下错误:

无效元素状态:元素必须是用户可编辑的才能清除它。

HTML 片段

<a id="enddate-dropdown" class="dropdown-toggle" role="button" data-toggle="dropdown" data-target="">
                <p class="custom-datepickers__date-prefix ng-binding">To:</p>
                <!-- ngIf: displayEndDate -->
                <!-- ngIf: !displayEndDate --><div ng-if="!displayEndDate" class="custom-datepickers__no-date ng-scope"></div><!-- end ngIf: !displayEndDate -->
</a>

代码片段

myclass.SetDateByXpath("//*[@id=\"enddate-dropdown\"]/p", myclass.GetDate("yyyy/MM/dd", mydate));

public void SetDateByXpath(String element, String value)
    {
        WebElement webElement = ExplicitWaitOnElement(By.xpath(element));       
        ((JavascriptExecutor) driver).executeScript(
                "arguments[0].removeAttribute('readonly','readonly')",webElement);
        webElement.clear();
        webElement.sendKeys(value);
    }

如果我手动设置日期,这是 HTML:

<a id="enddate-dropdown" class="dropdown-toggle" role="button" data-toggle="dropdown" data-target="">
                <p class="custom-datepickers__date-prefix ng-binding">To:</p>
                <!-- ngIf: displayEndDate --><p ng-if="displayEndDate" class="ng-binding ng-scope">2019/11/21</p><!-- end ngIf: displayEndDate -->
                <!-- ngIf: !displayEndDate -->
</a>

可能网站改变了,但现在我不知道如何设置这个值。任何帮助将不胜感激。

谢谢

4

2 回答 2

5

我猜你的错误被抛出:

webElement.clear();
webElement.sendKeys(value)

我们可以尝试通过 Javascript 设置值来解决这个问题:

// updated selector for webElement to grab the p element which contains the date string
WebElement webElement = driver.findElement(By.xpath("//*[@id=\"enddate-dropdown\"]/p[@ng-if='displayEndDate']"));

// try setting inner HTML which is the text inside the p
((JavascriptExecutor) driver).executeScript("arguments[0].innerHtml = '" + value + "';", webElement)

// alternative option is to try setting value instead
// ((JavascriptExecutor) driver).executeScript("arguments[0].value = '" + value + "';", webElement)
于 2019-11-15T16:53:08.450 回答
2

此错误消息...

invalid element state: Element must be user-editable in order to clear it.

...意味着标识的元素不处于用户可编辑状态以调用clear()方法。


要在带有Angular元素的下拉切换中插入日期,有两种方法:

  • 您可以click()在日历上使用sendKeys()
  • 或者您可以使用来executeScript()调用只读属性。removeAttribute()

但是,根据您共享的 HTML,似乎用日期字符串填充的元素(即2019/11/21 )在HTML DOM中并不容易获得。因此我们可以推断出以下元素是由于与其他WebElement交互而被添加到DOM 树中的,如下所示:

<p ng-if="displayEndDate" class="ng-binding ng-scope">2019/11/21</p>

因此,最好的方法是,

  • 首先调用click()HTML 中容易获得的元素,从而诱导WebDriverWait
  • 接下来调用sendKeys()新创建的元素WebDriverWait
  • 代码块:

    //element -> myclass.SetDateByXpath("//a[@class='dropdown-toggle' and @id='enddate-dropdown']"
    // observe the change in the ^^^ xpath ^^^
    //value -> myclass.GetDate("yyyy/MM/dd", mydate));
    
    public void SetDateByXpath(String element, String value)
    {
        WebElement webElement = ExplicitWaitOnElement(By.xpath(element));       
        webElement.click();
        WebElement webElement_new = ExplicitWaitOnElement(By.xpath("//a[@class='dropdown-toggle' and @id='enddate-dropdown']//p[@class='ng-binding ng-scope' and @ng-if='displayEndDate']"));
        webElement_new.clear();
        webElement_new.sendKeys(value);
    }
    

参考

您可以在以下位置找到相关讨论:

于 2019-11-22T15:41:30.730 回答