Hello, Can anyone help me how to navigate a web page which has frames using C#
-
Can anyone help me how to navigate a web page which has frames using C#. I need to click on a hyperlink automatically on a particular frame within the table of a website. Regards...
do you know the id of the link and the frame in which the link migh reside? if you do then you can access the link using window.frames[...].document.getElementById("....") and call its click method from there. I'd suggest though that you look into Jquery. It is rich Javascript framework that will be a part of Visual Studio 2010. It makes traversing and manipulating DOM elements very easy. More information on Jquery is http://jquery.com/
-
do you know the id of the link and the frame in which the link migh reside? if you do then you can access the link using window.frames[...].document.getElementById("....") and call its click method from there. I'd suggest though that you look into Jquery. It is rich Javascript framework that will be a part of Visual Studio 2010. It makes traversing and manipulating DOM elements very easy. More information on Jquery is http://jquery.com/