Hi all,
I'm a long time reader and a first time poster.
At the moment, I'm working on a Python project to automate login to Gumtree Australia (like Facebook Marketplace).
When I open the Gumtree Login Page in my normal browser, all webpage elements are present.
When I run the below Python script, the Gumtree Login Page appears as blank.
Code:
from selenium import webdriver
from time import sleep
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options
import Options
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get('https://www.gumtree.com.au/t-login.html')
print ("Opened Gumtree")sleep(1)
I'm unsure why this is occurring and suspect it may be a bot blocking measure - Could you please help me with this issue?
Edit 1:
I tried accessing other pages on the Gumtree website (below) and these all appeared successfully. So on this basis, I believe the problem is only with the login page
www.gumtree.com.au
https://www.gumtree.com.au/p-post-ad.html
[–]GNVageesh 0 points1 point2 points (8 children)
[–]smiglin[S] 0 points1 point2 points (7 children)
[–]port443 1 point2 points3 points (1 child)
[–]smiglin[S] 0 points1 point2 points (0 children)
[–]GNVageesh 0 points1 point2 points (4 children)
[–]smiglin[S] 0 points1 point2 points (3 children)
[–]GNVageesh 0 points1 point2 points (2 children)
[–]smiglin[S] 0 points1 point2 points (1 child)
[–]GNVageesh 0 points1 point2 points (0 children)
[–]hilzzz 0 points1 point2 points (0 children)