This is the HTML file I have. I am trying to use Selenium-Webdriver API along with ChromeDriver to send_keys
to an input
filed inside the <body>
. But I can't access anything which is inside of #document
. I cannot figure out why. Can someone please tell me what this #document
means and how can I access any of the elements inside this using Selenium.
<html>
<head>…<head>
<frameset >
<frame>...</frame>
<frame name="mainFrame" src>
#document
<html>
<head>…</head>
<body>…</body>
</html>
</frame>
</frameset>
</frameset>
This is a router webpage, the actual webpage is HUGE, so I haven't pasted it here.
See Question&Answers more detail:os