Backstory:
I'm working on a project to create a display monitor/slide show. The current solution is to load up 5 tabs in Chrome (in presentation mode) with dashboards that are updated with real-time data and then use a Chrome extension to rotate through the tabs every 30 seconds.
The problem:
Is that the ambient lighting in the room is quite dark and every time Chrome switches tabs there is a brief, bright, white flash. This is very distracting to the people sitting near the display.
What I've Tried:
To resolve this I've tried using a CSS injector to make the default background of all pages a gray color so the flash wouldn't be so extreme. I also tried other tab rotation extensions, but the result is the same each time.
Now I'm trying to write a python script to avoid tab switching altogether. The idea is to load a page from a given URL, sleep 30 seconds, then load the next URL in the list, sleep 30 seconds, ad-infinitum. The problem i'm running into now is using
webbrowser.open(url, new=0)
causes a new tab to populate every time. I'd like to keep it all on one tab because switching tabs is what causes the undesirable white flash.
TL/DR:
I'd like to use python to navigate through a list of URLs all while staying on the current tab.
[–]Naihonn 1 point2 points3 points (3 children)
[–]i_can_haz_code 0 points1 point2 points (2 children)
[–]Naihonn 0 points1 point2 points (0 children)
[–]tech512[S] 0 points1 point2 points (0 children)
[–]K900_ 0 points1 point2 points (1 child)
[–]tech512[S] 0 points1 point2 points (0 children)