I can't click the Sign in with Google button on the twitter login page "twitter.com/login"
Code trials:
def tweet(self):
self.driver.get("https://twitter.com/login")
time.sleep(10)
login_with_google = self.driver.find_element(By.XPATH, '//*[@id="container"]/div/div[2]/span[1]')
login_with_google.click()
Pycharm keeps giving me the error:

What I fail to understand is that I cannot select any element after opening the page even changing selector from XPATH to CSS or CLASS, this hasn't happened to me till now with any other website. Is there something I'm not understanding of the twitter web page?

