节点骑士没有使用AngularJS选择选项

时间:2016-11-06 08:13:02

标签: node.js phantomjs node-horseman

我正在尝试使用horseman更改基于AngularJS的选项。 不幸的是,它对我不起作用。 该网站是:https://www.cars.com/ 我似乎无法改变品牌,型号,价格下降。

  horseman
  .userAgent('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36')
  .open('https://www.cars.com/').catch(function(error){console.log(error)})
  .select('div.sw-input-group-make > select', car.make)
  .wait(5000)
  .select('.sw-input-group-model > select', car.model)
  .select('.sw-input-group-price > select', car.price)
  .type('.zip-field',car.zipcode)
  .screenshot("C:/Users/Himanshu/Desktop/upwork/car/big1.png").log()
  .click('.sw-input-group-submit >input').catch(function(error){console.log(error)})
  .waitForNextPage().catch(function(error){console.log(error)})
  .screenshot("C:/Users/Himanshu/Desktop/upwork/car/big.png").log()
  .close();
});

0 个答案:

没有答案