如何使用 Python splinter 在框架集中找到元素?
<frameset border="0" rows="100">
<frame id="banner898989898"> # this id will change each new login
.....
<body>
<div id="1">
<div class="2">
<div>
<form id="2">
<input type = text id = "3"> # I want to find this element and then to fill it
我试过find_by_css
, fi nd_by_xpath
, find_by_tag,
find_by_name
,find_by_value
和find_by_id
WebDriver: find_element_by_xpath
。
我遇到了一个ElementDoesNotExist
例外,尽管我成功地找到了具有上述语法的其他元素。