python - How can I find an element inside a frameset? -
how can find element inside frameset using python splinter?
<frameset border="0" rows="100"> <frame id="banner898989898"> # id change each new login ..... <body> <div id="1"> <div class="2"> <div> <form id="2"> <input type = text id = "3"> # want find element , fill
i tried find_by_css
, find_by_xpath
, find_by_tag,
find_by_name
, find_by_value
, find_by_id
webdriver: find_element_by_xpath
.
i got elementdoesnotexist
exception, although succeded in finding other elements syntax above.
Comments
Post a Comment