增加了數(shù)據(jù)批量爬取演示的示例
注意:必須默認安裝小瓶RPA瀏覽器增強插件,推薦edge瀏覽器
關(guān)鍵腳本代碼:
//開始獲取網(wǎng)頁上的數(shù)據(jù)
let rs = pbottleRPA.browserCMD_text('a.list-group-item') //css選擇器
datas = JSON.parse(rs)
console.log('爬取數(shù)據(jù)數(shù)量:',datas.length);
console.log('數(shù)據(jù)列表:');
datas.forEach(element => {
console.log(element);
});
最新版查看:
https://gitee.com/pbottle/pbottle-rpa
--------------------
原文地址:https://rpa.pbottle.com/a-14011.html