我目前正在撰写此网页:
我的代码:
#function for searching for all "details" button, return list
def search_detail_button():
detail_buttons = browser.find_elements_by_css_selector("span.show-flight-details")
return (detail_buttons)
##Open all details pages
def open_details():
time.sleep(3)
for button in search_detail_button():
button.click()
time.sleep(1.5)
open_details()
预期结果:
所有"航班详情和行李费"会被打开。
实际结果:
有时它会起作用,有时会给我一个例外。 为什么代码有时会起作用,有时候不是?