如何使用 htmlunit 单击 javascript 按钮?

发布于 2024-09-26 11:16:40 字数 1144 浏览 1 评论 0原文

我正在开发一个应用程序,该应用程序将使用 Java 中的 htmlunit 自动单击网页上的按钮。唯一的问题是该按钮是一个 javascript 按钮,因此标准 getInputByName() 将不起作用。对于处理这个问题有什么建议吗?下面包含该按钮的代码。

<a class="vote_1" id="1537385" href="/javascript%3Avoid%280%29/index"><img src="/images/parts/btn-vote.gif" alt="Btn-vote" /></a> 

另外,这里还有另一个投票代码。

<div id="content"><script type="text/javascript" src="/js/scriptFeeds/voteArticle.js"></script> 

这导致以下 JavaScript:

var pressed = new Array();

$j(document).ready(function() {
var nr = $j("input#number_of_articles").val();
for(var i=1; i<=nr; i++){
    $j("a.vote_"+i).click(function(){
        var article   = $j(this).attr("id");
        $j('#'+article).hide();
        if (!pressed[article]) {
            pressed[article] = "yes";
            jQuery.post('/vote-article', {
                _token: $j("#_token").val(),
                article_id: article
            },function(data) {
                $j("span.numberOfVotes_"+data.id).html(data.votes);
            }, "json");
        }
        return false;
    });
}
});

I'm working on an application that will automatically click a button on a webpage using htmlunit in Java. Only problem is that that button is a javascript button, so the standard getInputByName() won't work. Any suggestions with dealing with this? The code for the button is included below.

<a class="vote_1" id="1537385" href="/javascript%3Avoid%280%29/index"><img src="/images/parts/btn-vote.gif" alt="Btn-vote" /></a> 

In addition, here's the other code for voting.

<div id="content"><script type="text/javascript" src="/js/scriptFeeds/voteArticle.js"></script> 

Which leads to the following javascript:

var pressed = new Array();

$j(document).ready(function() {
var nr = $j("input#number_of_articles").val();
for(var i=1; i<=nr; i++){
    $j("a.vote_"+i).click(function(){
        var article   = $j(this).attr("id");
        $j('#'+article).hide();
        if (!pressed[article]) {
            pressed[article] = "yes";
            jQuery.post('/vote-article', {
                _token: $j("#_token").val(),
                article_id: article
            },function(data) {
                $j("span.numberOfVotes_"+data.id).html(data.votes);
            }, "json");
        }
        return false;
    });
}
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

今天小雨转甜 2024-10-03 11:16:40

尝试使用这个 Firefox 插件,它会记录您的操作并生成相同的 HTMLUnit 代码。可能会有帮助。
http://code.google.com/p/htmlunitscripter/

Try using this addOn for firefox, it records your actions and generates the HTMLUnit code for the same. may be it could help.
http://code.google.com/p/htmlunitscripter/

绅刃 2024-10-03 11:16:40

可点击的图像没有什么特别的。像这样的事情应该可以工作:

button = page.getHtmlElementById( "1537385" ) ;
page = button.click() ;

HtmlUnit 然后将运行 Javascript 并返回更新的页面。

如果“a”标签的 id 属性不是常量,您可能需要使用 XPath 来获取它。

There's nothing special about clickable images. Something like this should work:

button = page.getHtmlElementById( "1537385" ) ;
page = button.click() ;

HtmlUnit will then run the Javascript and return the updated page.

If the id attribute of the 'a' tag isn't constant, you may need to use XPath to grab it.

时光瘦了 2024-10-03 11:16:40

我的一个页面上有一个非常相似的链接。如果您可以在任何 HtmlElement 上调用 .click(),它应该能够运行关联的 Javascript。这是我的代码(从 HtmlUnitScripter 生成):

HtmlElement element4 = null;
Iterable<HtmlElement> iterable5 = page.getAllHtmlChildElements();
Iterator<HtmlElement> i6 = iterable5.iterator();
while(i6.hasNext())
{
    HtmlElement anElement = i6.next();
    if(anElement instanceof HtmlImage)
    {
        HtmlImage input = (HtmlImage) anElement;
        String[] elements = "http://example.com/pages/powerbutton.png".split( "/" );

        if(input.getSrcAttribute().indexOf(elements[elements.length-1] )> -1 )
        {
            element4 = input;
            break;
        }
    }
}

HtmlPage page = element4.click();

I have a very similar link on one of my pages. If you can call .click() on any HtmlElement, it should be able to run associated Javascript. Here is my code (generated from HtmlUnitScripter):

HtmlElement element4 = null;
Iterable<HtmlElement> iterable5 = page.getAllHtmlChildElements();
Iterator<HtmlElement> i6 = iterable5.iterator();
while(i6.hasNext())
{
    HtmlElement anElement = i6.next();
    if(anElement instanceof HtmlImage)
    {
        HtmlImage input = (HtmlImage) anElement;
        String[] elements = "http://example.com/pages/powerbutton.png".split( "/" );

        if(input.getSrcAttribute().indexOf(elements[elements.length-1] )> -1 )
        {
            element4 = input;
            break;
        }
    }
}

HtmlPage page = element4.click();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文