如何在java中使用HtmlUnitDriver处理警报



我试图用HtmlUnitDriver处理警报事件,但我有一些问题,我想了解为什么。下面是java代码:

HtmlUnitDriver browser = new HtmlUnitDriver(true);
browser.get("http://localhost:8001/index.html");
browser.findElementById("myButton").click();
try {
    WebDriverWait wait = new WebDriverWait(browser, 2);
    wait.until(ExpectedConditions.alertIsPresent());
    Alert alert = browser.switchTo().alert();
    alert.accept();
    System.out.println("ALERT");
} catch (Exception e) {
    System.out.println(e.getMessage());
    System.out.println("NO ALERT");
}
String htmlContent = browser.getPageSource();
System.out.println(htmlContent);
browser.close();    

,这是HTML代码:index . html

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <meta charset="utf-8" />
</head>
<body>
    <form id="form1">
        <input id="username" name="username" />
        <button id="myButton" type="button" value="Page2">Go to Page2</button>
    </form>
</body>
</html>
<script>
    document.getElementById("myButton").onclick = function () {
        location.href = "page2.html";
    };
</script>   

page2.html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Page2</title>
    <meta charset="utf-8" />
</head>
<body onload="myfunction('hello2')">
    <p id="result"></p>
</body>
</html>
<script>
    function myfunction(data) {
        document.getElementById('result').innerHTML = data
    }
</script>

控制台中输出为:

NO ALERT
<?xml version="1.0" encoding="UTF-8"?>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>
      Page2
    </title>
    <meta charset="utf-8"/>
  </head>
  <body onload="myfunction('hello2')">
    ?

    <p id="result">
      hello2
    </p>
    <script>
//<![CDATA[
    function myfunction(data) {
        document.getElementById('result').innerHTML = data
    }
//]]>
    </script>
  </body>
</html>

查看输出,它似乎与源代码有点不同,关于这一点,我有几个问题。为什么没有检测到page2.html上的警告?为什么会有一些额外的字符,比如"?"one_answers"//<! [CDATA["?我怎样才能避免它们呢?

我正在尝试处理警报,我是在开始,所以任何建议将不胜感激。

您希望警报来自哪里?处理警报的代码看起来不错,但是HTML中没有任何内容表明警报将在任何阶段被触发。在第2页上运行的唯一脚本是将p#result的innerHTML设置为'hello2'。

至于额外的字符,我不太确定。这个答案可能会让我们对正在生成的CDATA内容有所了解。

相关内容

  • 没有找到相关文章

最新更新