Hi
I'm new in PowerShell , i try to get access elements inside frames in Internet Explorer
exmpl.
****index.html*******
<!DOCTYPE html>
<html>
<frameset cols="25%,*,25%">
<frame src="a.htm">
<frame src="b.htm">
</frameset>
</html>
*******a.html********
<!DOCTYPE html>
<html>
<body>
<textarea rows="4" cols="50">
TEXT 1 ......
</textarea>
</body>
</html>
*******b.html**********
<!DOCTYPE html>
<html>
<body>
<textarea rows="4" cols="50">
TEXT 2 ......
</textarea>
</body>
</html>
--------------------------------------------------------
could anyone help me ?