Hi,
It's a simple page with description of frameset.I want to locate to an
link in the first frame named frmHidden. the result report :
Step[followFrame (2/5)] Frame not found with name: frmHidden available: []
,and the followed two frames both cannot be recognized by their name.
coule anyone offer any helps.thanks.
the snip of test script:
<property name="asahipage2"
value="
http://localhost:8080/AsahiWeb/login.do?method=login;login_id=asahi;login_pwd=asah"/
>
<target name="asahi">
<webtest name="Compact Search Test">
<steps>
<invoke url="${asahipage2}"/>
<followFrame name="frmHidden"/>
the source code of page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>デ�タベ�ス管理システム</title>
</head>
<frameset name="fsOne" rows="0,72,*" framespacing="0" frameborder="0">
<frame name="frmHidden" scrolling="no" src="main/hidden.jsp"/>
<frame name="frmTop" scrolling="no" noresize target="frmWorkspace"
src="main/top.jsp"/>
<frame name="frmWorkspace" scrolling="no" noresize target="_self" src=""/>
<noframes>
<body topmargin="0" leftmargin="0">
<p></p>
</body>
</noframes>
</frameset>
</html>