我正在使用 Selenium IDE 在包含框架的 Web 上生成测试用例。我在带有以下代码的网页中:
<html>
<head>
<title>Mantención de Productos</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="224,120,*" frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="arriba" scrolling="NO" src="x.enc.adm.fbusprod.jsp" >
<frame name="centro" scrolling="auto" src="x.enc.adm.blanco.jsp">
<frame name="abajo" scrolling="AUTO" src="x.enc.adm.datoprod.jsp">
<frame>
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>
我需要选择一个在“arriba”框架内的项目,所以如果我搜索这个项目,Selenium 找不到它,所以我使用:
命令:selectFrame - 目标:arriba
我得到的:[错误] 未找到元素 arriba
我也使用过:
1 命令:selectFrame - 目标:相对顶部
2 命令:selectFrame - 目标:arriba
但我仍然得到:[错误] Element arriba not found
有人可以帮我解决这个问题吗?