I wanted to go to a page by clicking a button. First i needed to click on the mail, and then click on "this is me"
time.sleep(10)
second_tab = webdriver.Chrome()
second_tab.get("https://www.tempinbox.xyz/mailbox/fohtek@fitschool.be")
clickmails= second_tab.find_element_by_xpath("//div[2]/div[2]/div/div[2]").click()
time.sleep(5)
clickverilink=second_tab.find_element_by_xpath("//a[contains(.,'This is me!')]").click()
But for some reason, whenever I click this, it redirects me to a random ad page. Where am i wrong?