2

我正在尝试使用 Phantom.JS 在此页面上进行一些页面自动化:https ://reserve.apple.com/GB/en_GB/reserve/iPhone

我知道如何使用document.getElementById('store') = "R363"来选择第一个选项。但似乎在我选择了第一个选项之后,原始页面的 DOM 元素会改变,我不知道如何使用 Phantom.JS 来实现

4

1 回答 1

0

而不是像这样使用document.getElementById('store') = "R363"尝试使用jQuery:

var page = require('webpage').create(); 
// open the page
page.open('https://reserve.apple.com/GB/en_GB/reserve/iPhone', function() {
    //inject jQuery
    page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
        // run the following code in the context of the page
        page.evaluate(function() {
            // change the value of the combobox
            $("#store").val( newval );

            // do stuff in the page
        });
        phantom.exit()
    });
});
于 2013-06-16T09:51:00.900 回答