gpt4 book ai didi

javascript - CasperJS : dropdown list; select an option, 代码在浏览器和 slimer 中有效,但在 phantom 中无效

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:34:45 25 4
gpt4 key购买 nike

这是我的问题:我在一个特定的案例中尝试设置一个选择下拉列表的选项。我通常使用 this.mouse.up() + this.mouse.down() 但在这种情况下我不能,因为这种行为在带有 webkit 的网站上不起作用(你可以比较两个与谷歌浏览器和 Firefox)。

这里是网址:I want to set the field 'ANNEE' to a year, 2008 in my example

我的代码:(我的函数更改 HTML 并启动 change() 事件)

//custom function
casper.fillSelect = function(selectSelector, optionText){
this.evaluate(function(sel,setByText) {
if ("createEvent" in document) {
var evt = document.createEvent("HTMLEvents")
,x = document.querySelectorAll(sel + ' > option')
,l = x.length
;
evt.initEvent("change", false, true);

for (i=0; i<l; i++){
if(x[i].textContent.indexOf(setByText) !== -1){
console.log(x[i]);
console.log(x[i].getAttribute('value'));
x[i].setAttribute('selected', true);
x[i].parentNode.dispatchEvent(evt);
}
}
}
else {console.log("error with fillSelect");}
},selectSelector, optionText);
};

//event
casper.test.on('fail', function(failure) {
casper.capture('fail.png');
});

/*************************************** Tests *****************************************************/
casper.test.begin('\n********* Compare : ***********', function (test) {
"use strict";
casper.start()
.thenOpen("http://www.linternaute.com/voyage/climat/paris/ville-75056",function(){
casper.fillSelect('fieldset.fcNeutre > div.odSelect:nth-of-type(2) > select', '2008');
})
.waitForUrl(/2008/, function(){
this.capture('fail2.png');
this.test.assertSelectorHasText("h2", "maximales");
this.test.assertSelectorHasText("h2", "minimales");
this.test.assertSelectorHasText("h2", "Paris");
this.test.assertSelectorHasText("h2", "Le soleil");
this.test.assertSelectorHasText("h2", "La pluie");
this.test.assertExists("tspan");
this.test.assertExists("div.marB20");
this.test.assertNotEquals(this.fetchText("div.marB20 > table > thead > tr > th"), "", "Table first data not empty");
})
.run(function() {
this.test.comment('--- Done ---\n');
test.done();
});
});

相当于我的casper自定义函数,你可以在浏览器中执行:

var fillSelect = function(sel,setByText) {
if ("createEvent" in document) {
var evt = document.createEvent("HTMLEvents")
,x = document.querySelectorAll(sel + ' > option')
,l = x.length
;
evt.initEvent("change", false, true);

for (i=0; i<l; i++){
if(x[i].textContent.indexOf(setByText) !== -1){
//console.log(x[i]);
//console.log(x[i].getAttribute('value'));
x[i].setAttribute('selected', true);
x[i].parentNode.dispatchEvent(evt);
}
}
}
else {console.log("error with fillSelect");}
};

fillSelect('fieldset.fcNeutre > div.odSelect:nth-of-type(2) > select', '2008');

所以它适用于 FF、Google Chrome 和 slimerJS,但不适用于 PhantomJS ...请帮忙,如果你有另一个想法,只需在这个 'ANNEE' 字段中选择一个选项,我接受!

会不会是浏览器兼容性的问题?

这很奇怪,因为在同一个网站中,有时它会与其他“选择”一起使用,与这个相同......

最佳答案


所以我的最终解决方案(感谢 sudipto)

casper.fillSelect = function(selectSelector, optionText){
this.evaluate(function(sel, val) {
jQuery(sel).find("option:contains('" + val + "')").attr('selected', true).change();
}, selectSelector, optionText);
};

casper.fillSelect('fieldset.fcNeutre > div.odSelect:nth-of-type(2) > select', '2008');

关于javascript - CasperJS : dropdown list; select an option, 代码在浏览器和 slimer 中有效,但在 phantom 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23650944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com