When I am opening the url via link https://kinoxor.pro/650-mir-druzhba-zhvachka-2024-05-06-19-54.html — I have an error – Internal Server Error
But when I paste the link to the search engine https://yandex.ru/search/?text=https%3A%2F%2Fkinoxor.pro%2F650-mir-druzhba-zhvachka-2024-05-06-19-54.html&search_source=dzen_desktop_safe&lr=213
I can open the site (the first site in the results)
I am opening site with help of selenium
from selenium import webdriver
driver = webdriver.Chrome()
url = "https://kinoxor.pro/650-mir-druzhba-zhvachka-2024-05-06-19-54.html"
driver.get(url)
I think that I should emulate the site I came from (add some headers / meta-information)
I mean I should emulate that my previous site was yandex.ru (I don’t want to really go to yandex)
Is it possible in Python?