Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

BSNL AutoPay - TM

// ==UserScript==
// @name BSNL
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://portal2.bsnl.in/myportal/*
// @grant unsafeWindow
// ==/UserScript==
var $ = unsafeWindow.jQuery;

function sleep(s) {
return new Promise(resolve => setTimeout(resolve, 1000*s));
}
unsafeWindow.onload=(async function() {
if (window.location.href=='https://portal2.bsnl.in/myportal/authorize.do?q=1'){
sessionStorage.tm=1;
await sleep(1);
$('#login-btn').click();
}
else if (window.location.href=='https://portal2.bsnl.in/myportal/workspace.do' && +sessionStorage.tm){
await sleep(3);
$('#invoice_portlet .todo')[0].click();
$('.paynow')[0].click();
}
else if (window.location.href=='https://portal2.bsnl.in/myportal/paynow.do' && +sessionStorage.tm){
await sleep(1);
sessionStorage.tm=0;
$('div[data-name="State Bank of India"')[0].click();
$('div[data-id="BILLDESK"]')[0].click();
paynow_btn.click();
}
// Your code here...
});


This post first appeared on SMARTMANOJ, please read the originial post: here

Share the post

BSNL AutoPay - TM

×

Subscribe to Smartmanoj

Get updates delivered right to your inbox!

Thank you for your subscription

×