如何从 selenium rc 的文本区域中选择几个单词
步骤: 1.我使用浏览选项上传文件。 2.上传的文件内容以不可编辑的格式显示 3.现在我必须选择几个单词。
为此,我使用了 mouseMoveAt (100,200) mouseDown() mouseMoveAt (150,250) mouseMoveUp()。 这不起作用..
任何人都可以提供示例代码吗?
steps:
1. i uploaded file using browse option.
2. uploaded file content displayed in non-editable format
3. now i have to select few words.
for this i used mouseMoveAt (100,200) mouseDown() mouseMoveAt (150,250) mouseMoveUp().
This is not working..
Can anyone can give sample code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我完全理解你的问题,但这是我的看法 -
您可以使用 selenium.getText(); 来检索页面上的文本并将其存储在变量中。您可以使用此变量,并验证其正确性。
下面是一个示例语法:
此外,如果您需要提取并验证
var
中包含的部分文本,则可以使用 Java 字符串函数。I'm not sure I understand your question completely, but here's my take -
You can use
selenium.getText();
for retrieving the text on a page and storing it in a variable. You can use this variable, which you can verify for correctness.Here's an example syntax:
Further, if you need to extract and verify just a portion of the text contained in
var
, you can use Java string functions.