我正在尝试从网页抓取一些数据,我需要将可拖动项目移动到可放置的位置。这是我到目前为止所尝试的:
var casper = require('casper').create();
var mouse = require('mouse').create(casper);
casper.start("https://uygulama.gtb.gov.tr/BeyannameSorgulama/",function() {
this.sendKeys('input[id="txtBeyannameNo"]', '17341200EX119337');
this.mouse.down('li.ui-draggable');
this.mouse.move('#ajax-fc-circle');
this.mouse.up('#ajax-fc-circle');
});
casper.then(function(){
casper.capture('screenshots/test.png');
this.click('input[id="btnSorgula"]');
});
casper.waitForSelector('span[id="LabelDurum"]', function (){
casper.capture('screenshots/test2.png');
console.log("OK!");
});
casper.run();
但我无法成功完成这个过程。
我做错了什么?