I am just learning Selenium using Python. I used BBC web page, however I am not sure how I can add the code for the following screen. All I need is the code to identify the field "Email or username" and "Password". Please see the screenshot. My code looks like this at the moment.
driver.get("https://www.bbc.co.uk/")
driver.find_element(By.XPATH, "//*[@id='header-content']/div[2]/nav/div[1]/div/div[1]/ul[2]/li[1]/a/span[2]").click()
ele = driver.find_element(By.NAME("Email or username"))
Snapshot:

