Hello everyone - very strange problem, I hope someone can help. An element on my HA dashboard for Becker blinds controller has mysteriously stopped working - The dashboard element is a simple iframe that loads a local page so the frame can auto-refresh regularly. This has worked perfectly for ages. HA is fully updated to 2023.3.3, OS 9.5, Supervisor 2023.03.1
Recently clicking the ‘Login’ button has stopped working - given the correct username & password and click Login nothing happens. Enter the wrong username or password and the ‘wrong password’ message is displayed. The behaviour is the same on the HA dashboard in any browser - the Fully browser on a Samsung tablet, or Chrome on the Mac. Going direct to the Becker URL works fine, just the HA dashboard will not load the site any more. I’ve reloaded, restarted, cleared the cache, updated. Now out of ideas.
How do I go about figuring out what is going wrong?
- type: iframe
url: /local/becker_custom_page/index.html
aspect_ratio: 100%
And /www/becker_custom_page/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="7200">
<title>Becker Central Control</title>
</head>
<body>
<iframe style="position:absolute; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;" src="https://gw.b-tronic.net/login/#/account/box/connect/betibi" frameborder="0">
</iframe>
</body>
</html>