how can i click on the "NATIONAL" text with python selenium
<div class="ellipsis__content"> <ul class="breadcrumb_new" id="breadcrumb"> <li> <span>NATIONAL</span> </li> </ul> </div>
I tried these below things,
find_element_by_xpath("//div[@id='breadcrumb']/li/span") find_element_by_css_selector("#breadcrumb > li > span")
Both the methods not working, any idea here