i am trying to navigate through pages using selenium web driver and i am stuck at one point please refer to the image where i have shown the output of inspect element for that page that i am working on.

but in the page source (which i saw on the browser and also using Jsoup) looks like this,
<html> <head> </head> <frameset rows="75,60,*" resize="no" SCROLLING="NO" name=main border="0"> <frame src="/frame/topnewprof.shtml" name="top" SCROLLING=NO> <frame src="/frame/blank.html" name="menu" SCROLLING=NO > <frame src="/itrade/user/welcome.exe?action=chk_seckey_stat" name="body" SCROLLING=AUTO> </frameset> <body> </BODY></html> why is this mismatch? and the yellow stuff that i have highlight in the image above has the element that i need!! how will i get there using selenium?? i know that we can navigate into the iframe using selenium's switchTo().frame() but even if i get into any of the three frames as shown above in the page source information, i'm not able to find the information i need, can this be achieved ? is it even possible?