I'm working on a social media branding tool using flask+selenium with python. It takes a few user inputs (e.g. title, subtitle etc) and then uses those input and selenium to navigate to another page, use the text to draw a title and then screenshot that page.
At the moment, this works on a mac, but trying to get it work on company owned Windows computer (which is slightly more locked down). The flask app runs but issues happen when it tries to use selenium. Have narrowed down the issue to where selenium is trying to navigate to the page served by flask
driver.get('http://127.0.0.1:5000/branding')
The logs indicate a 500 error. The page is navigatable but just not from selenium. Any ideas about what could be going wrong?