我正在使用selenium自动化网页。
我的问题是selenium无法在隐藏字段中键入文本。我用了
selenium.type("xpath of hidden field","some text");
但它不起作用。它没有给出任何错误,但没有在该隐藏字段中输入任何内容。
示例:在 Gmail 的正文字段中输入文本(在撰写邮件时)。 this is the exact example of my issue
这是 Rad 编辑器。所以代码是这样的(这里的文本保存在里面iframe-->html-->body
)
<iframe id="iframe1">
<html>
<body> This is some text </body>
</html>
</iframe>