H-E-B是美国德州连锁超市。
本文将介绍H-E-B购物优惠攻略:会员 / 每周促销 / 优惠券,并提供自动添加电子优惠券脚本。
会员
使用方法:收银台输入手机号码和PIN码。
每周促销
周三 ~ 次周二
优惠券
电子优惠券:网上获取。通过脚本自动添加。
纸质优惠券:店内货架处获取。
自动添加电子优惠券脚本
访问电子优惠券页面,打开浏览器控制台(F12 - Console),粘贴运行以下代码。
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));}
async function main() {
for(var i=0; i<3; i++) {
console.log('开始加载第'+(i+1)+'页...');
scrollTo(0, Math.max( document.documentElement.scrollHeight, document.documentElement.clientHeight)-1500);
await sleep(3000)}
scrollTo(0,0)
console.log('开始获取优惠券...');
var buttons = document.getElementsByClassName('btn btn-coupon coupon-item-action-button');
var number=buttons.length;
console.log('获取到'+number+'个优惠券!');
for(var i=0; i<number; i++) {
buttons[i].click();
console.log('添加第'+(i+1)+'个优惠券!');
await sleep(1000)}
console.log('优惠券添加完成!');}
main()