Python webdriver を使用して子要素のクラス名を取得する方法
find_elements(By.TAG_NAME, "td") を使用してすべての td 要素に移動できます
- 子ノードにアクセスしたい
'input class', 'type' , 'value','actiontypes', 'itemtype', 'aria-checked' の属性値を取得したい -> ('checkbox', 'checkbox', "undefined",' remove','song', 'false')
Elm = WebElement(tds[2].parent,tds[2].id);
ElmNew = Elm.find_element_by_class_name('checkbox');
find_element_by_class_name を使用しようとしましたが、このエラーが発生しました
NoSuchElementException: Message: u'Unable to locate element: {"method":"class name","selector":"checkbox"}' ; Stacktrace: Method FirefoxDriver.prototype.findElementInternal_ threw an error in file:///c:/users/<XXXX>/appdata/local/temp/tmpvsmd_c/extensions/fxdriver@googlecode.com/components/driver_component.js
誰でも助けることができますか?