Editing
Xpath tools
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
List of tools for xpath expression selection/query == Comparison of xpath tools == <table border=1 class="wikitable sortable"> <tr> <th>Method</th> <th>Pros</th> <th>Cons</th> </tr> <tr> <td>chrome extension [https://chrome.google.com/webstore/detail/xpath-helper/hgimnogjllphhhkhlmebbmlgjoejdpjl XPath Helper]</td> <td>worked on online webpage</td> <td>NOT work on offline file</td> </tr> <tr> <td>Sublime [https://packagecontrol.io/packages/xpath xpath] plugin</td> <td>worked on offline file</td> <td>NOT work on online webpage</td> </tr> </table> == Browser console == Browser console of {{chrome}} or {{Edge}} # 選單: 工具 -> 開發人員工具 -> Console # 確認符合 XPath 規則的結果,例如 XPath 規則是 {{kbd | key = <nowiki>"//img"</nowiki>}},可在 Console 輸入 {{kbd | key = <nowiki> $x("//img") </nowiki>}},按 Enter。就會顯示符合 xpath 規則的結果<ref>[http://stackoverflow.com/questions/3030487/is-there-a-way-to-get-the-xpath-in-google-chrome Is there a way to get the xpath in google chrome? - Stack Overflow]</ref><ref>[https://yizeng.me/2014/03/23/evaluate-and-validate-xpath-css-selectors-in-chrome-developer-tools/ Evaluate and validate XPath/CSS selectors in Chrome Developer Tools | Yi Zeng’s Blog]</ref>: https://planetoid.info/images/xpath_result_on_browser_console.jpg 擷取指定 XPath 的元素文字,清理後以換行分隔顯示。下方例子的 XPath 規則是 {{kbd | key = <nowiki>//div[@id="showvender"]/a</nowiki>}} <pre> // 使用 document.evaluate 取得所有元素 const result = document.evaluate('//div[@id="showvender"]/a', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); // 建立陣列來存放所有元素的文字 const textArray = []; // 遍歷所有元素 for (let i = 0; i < result.snapshotLength; i++) { const element = result.snapshotItem(i); // 去除換行符號並加入陣列 const cleanedText = element.textContent.replace(/[\n\r]+/g, '').trim(); textArray.push(cleanedText); } // 用換行符號連接所有元素 console.log(textArray.join('\n')); </pre> == XPath Browser extensions == [https://chrome.google.com/webstore/detail/xpath-helper/hgimnogjllphhhkhlmebbmlgjoejdpjl XPath Helper] for {{Chrome}} # 不支援 {{kbd | key=<nowiki>file:///</nowiki>}} # 輸入 ctrl + shift + x 或點選工具列上的 x 圖示,開啟 XPath Helper console (顯示在網頁上方) # 輸入 xpath 規則。就會凸顯符合 xpath 規則的網頁元件地方 : https://planetoid.info/images/xpath_helper.jpg [https://chrome.google.com/webstore/detail/selectorshub/ndgimibanhlabgdgjcpbbndiehljcpfh SelectorsHub] for {{Chrome}} # After adding it to browser, restart the browser. 安裝後,重新啟動瀏覽器 # Open DevTools. 打開「開發人員工具」 # Click on SelectorsHub tab. 點選「元素」標籤,再點選最右邊的「SelectorsHub」 # Here it will show all possible xpath, selectors for inspected element. # To build your own xpath or CSS Selector, start typing in the selector input box. [https://chrome.google.com/webstore/detail/natu-websync/aohpgnblncapofbobbilnlfliihianac/related Natu WebSync - Chrome 線上應用程式商店] for {{Chrome}} # 開啟「開發人員工具」 # 點選標籤「WebSync」-> 輸入 xpath 規則 [https://chrome.google.com/webstore/detail/css-selector/dobcgekgcmhjmfahepgbpmiaejlpaalc CSS Selector][https://css-selector-gadget.dllplayer.com/welcome] for {{Chrome}} * 直接點選網頁元素,則顯示 CSS Selector。點選 xpath 按鈕則顯示 xpath 路徑。 [https://addons.mozilla.org/zh-TW/firefox/addon/firebug/ Firebug] + [https://addons.mozilla.org/zh-TW/firefox/addon/firepath/ FirePath] for {{Fx}} # 選單: 工具 --> 網頁開發者 --> Firebug --> 開啟 Firebug # 切換到 FirePath 標籤 # 輸入 xpath 規則。就會凸顯符合 xpath 規則的網頁元件地方 == Sublime text editor == [https://packagecontrol.io/packages/xpath xpath] plugin: "[https://www.sublimetext.com/ Sublime Text] plugin for easier cursor navigation of XML and HTML files using XPath 1.0." Steps # Open the Command Palette #* Menu: Tools -> Command Palette #* or press the keyboard shortcut<ref>[https://stackoverflow.com/questions/45586508/sublime-text-xpath-plugin-shortcut sublimetext3 - Sublime Text - XPath Plugin shortcut - Stack Overflow]</ref>: {{kbd | key=ctrl + shift + p}} on {{Win}} or {{kbd | key=command + shift + p}} on {{Mac}}) # and select {{kbd | key=Xpath: Query document}} # input the Xpath expression == Other tools == * [https://xpath.curiousconcept.com/ XPath Expression Tester] for XML {{access | date=2020-06-09}} * [https://www.freeformatter.com/xpath-tester.html Free Online XPath Tester / Evaluator] for XML {{access | date=2020-06-09}} * [http://xpather.com/ XPath online real-time tester, evaluator and generator for XML & HTML] {{access | date=2023-03-22}} == Xpath syntax examples == * SVG {{kbd | key=<nowiki>//*[local-name() = 'svg']</nowiki>}} * SVG elements {{kbd | key=<nowiki>//*[name()='svg']//*[name()='YOUR OBJECT']</nowiki>}} <ref>[https://stackoverflow.com/questions/31520642/how-to-use-xpath-in-selenium-webdriver-to-grab-svg-elements java - How to use xPath in Selenium WebDriver to grab SVG elements? - Stack Overflow]</ref> == References == * References <references/> Related articles * [https://devhints.io/xpath Xpath cheatsheet] {{Template:Troubleshooting}} [[Category:Programming]] [[Category:Web_Dev]] [[Category:Javascript]] [[Category:Data collecting]]
Summary:
Please note that all contributions to LemonWiki共筆 are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
LemonWiki:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Access
(
view source
) (protected)
Template:Chrome
(
edit
)
Template:Edge
(
edit
)
Template:Fx
(
edit
)
Template:Kbd
(
edit
)
Template:Mac
(
edit
)
Template:Troubleshooting
(
edit
)
Template:Win
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Current events
Recent changes
Random page
Help
Categories
Tools
What links here
Related changes
Special pages
Page information