如何使用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
我使用WebDriver find_by_css
尝试了nd_by_xpath
,fi find_by_tag,
,find_by_name
find_by_value
,find_by_id
和find_element_by_xpath
。< / p>
我得到了一个ElementDoesNotExist
异常,虽然我成功地找到了上面语法的其他元素。