使用python PAMIE模块制作一些脚本。
在我的脚本中使用Internet Explorer对象并处理此对象
我正在使用DOM路径,但检查完整的dom元素路径并不容易。
例如,我如何搜索完整的dom路径,如格式?
divChild.nextSibling.nextSibling.nextSibling.nextSibling.childNodes[0].nextSibling.nextSibling.nextSibling.nextSibling.childNodes[0].childNodes[0].childNodes[0].childNodes[0]
手动检查不容易
如果有人帮助我的话,那就太好了!
答案 0 :(得分:0)
你能按对象id识别节点吗?
document.getElementById("elementId")
答案 1 :(得分:0)
尝试使用此:https://github.com/asatour/jquery-domPath。 获取HTML jquery元素的DOM路径
<body>
<div class="module" id="products-block">
<div class="description">
<h1 class="section-title">
product general description
</h1>
<ul class="products">
<li>Cameras</li>
<li>TV</li>
<li>Computers</li>
</ul>
</div>
</div>
</body>
JavaScript:
var products_domPath = $(".products").domPath();
输出:
["div#products-block.module > div.description > ul.products"]