When trying to open a certain URL where a jacket is shown with selenium-python the page automatically redirects me to the European home-screen
Here's my code (USA store):
URL = 'https://shop-usa.palaceskateboards.com/products/reversible-spherie-jacket-gold-petrol'
browser = webdriver.Chrome()
browser.get(URL)
webbrowser.open(URL)
Website redirects me once I open that URL to this one (European store)
https://shop.palaceskateboards.com/
Is there any way to stop it from redirecting me?