Website url 我正在使用硒-python 我無法找到網站中的特定元素。我正在尋找webscrape它的信息{數據座標}。我找不到該元素並從中獲取信息。請在此分享您對此問題的看法。 Screenshot of the HTML code and the element。在此先感謝無法找到硒python中的特定元素
嘗試代碼: -
fill=driver.find_element_by_xpath("//div[contains(@class,'inner fill')]")
latlong=fill.find_element_by_xpath("//div[contains(@class,'map.space-map.leaflet-container')]")
latlong.find_attribute["data-coordinates"]
Result :- Message: Unable to locate element: {"method":"xpath","selector":"//div[contains(@class,'map.space-map.leaflet-container')]"}
你遇到兄弟html DOM元素。使用xpath來查找'n-element'。此外,請分享您已經嘗試過的代碼。 –
歡迎來到Stack Overflow!請閱讀[問]。請提供您嘗試過的代碼以及執行結果,包括任何錯誤消息等。還請提供指向頁面和/或相關HTML的鏈接。 – JeffC
謝謝@Igor Savinkin和JeffC。這是我試過的代碼。填= driver.find_element_by_xpath( 「// DIV [含有(@類, '內填充')]」) 經緯度= fill.find_element_by_xpath( 「// DIV [含有(@類,'地圖空間的地圖小葉容器」 ) latlong.find_attribute [「data-coordinates」] and result was this Message:無法找到元素:{「method」:「xpath」,「selector」:「// div [contains(@ class,'map space -map leaflet-container')]「和網址是https://www.appearhere.co.uk/spaces/north-kensington-upcycling-store-and-cafe –