我正在尝试在html页面上填写一个表单,我相信它包含在一个框架中。 html的相关部分如下所示:
<frameset rows="*" cols="*,183" frameborder="NO" border="0" framespacing="0">
<frameset rows="61,28,*,0,0" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="fr1_tab1.jhtml?NUM1=1462489510565" scrolling="NO" noresize name="frame1" title="page header - navigation">
<frame src="fr4_top.jhtml?NUM1=1462489510565" scrolling="NO" noresize name="frame1b" title="page header - search">
<frame name="frame4" title="main body" src="processShowMyPeapodPage2.jhtml?NUM1=1462489510565" noresize scrolling="AUTO">
<frame src="frame6.jhtml" marginwidth="0" marginheight="0" name="frame6" noresize frameborder="NO" border="0" title="empty">
<frame src="frame8.jhtml" marginwidth="0" marginheight="0" name="frame8" noresize frameborder="NO" border="0" title="empty">
</frameset>
我要找的相关信息位于frame1b内。使用Selenium,我确认frame1b确实位于页面上:
<code>
for thing in driver.find_elements_by_tag_name('frame'):
print thing.get_attribute('name')
</code>
输出:
frame1
frame1b
frame4
frame6
frame8
frame2
frame3
cancelFrame
frame5
frame6
所有这一切之后,我尝试使用driver.switch_to_frame('frame1b')
,但收到错误NoSuchFrameException: Message: no such frame
。
我的问题是,如何进入此框架,或者如果没有必要进入此框架以访问其中一个表单,我该如何直接访问该表单?
答案 0 :(得分:0)
我可能错了,但据我所知,只有当selector是元素driver.switch_to_frame(selector)
时才能使用id
。在您的情况下尝试使用以下内容:
driver.switch_to_frame(driver.find_element_by_xpath('//frame[@src="fr4_top.jhtml?NUM1=1462489510565"]'))