如何从 selenium rc 的文本区域中选择几个单词

发布于 2024-11-06 06:55:55 字数 178 浏览 0 评论 0原文

步骤: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经大条 2024-11-13 06:55:55

我不确定我完全理解你的问题,但这是我的看法 -
您可以使用 selenium.getText(); 来检索页面上的文本并将其存储在变量中。您可以使用此变量,并验证其正确性。
下面是一个示例语法:

String var = selenium.getText(your_identifier_for_text);

此外,如果您需要提取并验证 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:

String var = selenium.getText(your_identifier_for_text);

Further, if you need to extract and verify just a portion of the text contained in var, you can use Java string functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文