我正在尝试使用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();
});