0
我使用Splinter(https://splinter.readthedocs.org/en/latest/)進行網絡測試,我使用browser.find_by_css()成功獲取div元素,div包含子節點。我正在使用phantomjs驅動程序。Splinter childnodes div
如何訪問由browser.find_by_css()返回的WebDriver對象 表示的div的子節點?
謝謝。
我使用Splinter(https://splinter.readthedocs.org/en/latest/)進行網絡測試,我使用browser.find_by_css()成功獲取div元素,div包含子節點。我正在使用phantomjs驅動程序。Splinter childnodes div
如何訪問由browser.find_by_css()返回的WebDriver對象 表示的div的子節點?
謝謝。
我不能exectly瞭解你需要什麼,但它可能是其中的一個:
值= browser.find_by_css( 'H1')
打印value.first 打印值[4](對於第四孩子)