updated on 2020-01-13
90分でセッションが切れて、12時間で完全にタイムアウトを起こす。
Set a javascript interval to click on the connect button every 60 seconds.
1. Open chrome developer-settings (in your web-browser) with Ctrl+Shift+I (windows) (in case of mac, press Option+Command+I)
Chromeのディベロッパーツールを開く
2. click on "console" tab and type under code on the console and press enter.
Chromeのディベロッパーツールのコンソールに以下のjavascriptを打ち込む
function ConnectButton(){
console.log("Connect pushed");
document.querySelector("#connect").click()
}
setInterval(ConnectButton,60000); # 60000ms means 60s
Set a javascript interval to click on the connect button every 60 seconds (60000 ms)
60秒毎に接続ボタンが押されるので90分経ってもタイムアウトしない。
Sometimes, complex code miss cause as timeout inspite of code error.
Time out isn't always caused by session out or run time out.