In the image above I am trying to click the 'Continue with email' button. This is the code I have:
from selenium import webdriver
Driver = webdriver.Firefox() #Define webdriver to use
Driver.get('https://www.airbnb.co.uk/login')
Element = Driver.find_element_by_xpath("//div[contains(@class,'_p03egf') and (@class, '_18m31f1b')]")
Element.click
Either my syntax is wrong or my poor understanding of web pages is letting me down
Any help - much appreciated
Thanks Rob
