如何在另一个窗口中使用selenium storeValue

发布于 2024-11-03 05:29:49 字数 320 浏览 1 评论 0原文

我需要在硒中创建以下测试用例并寻求帮助 1.在浏览器中打开网站 http://foo.bar 2.登录网站 3.选择一些内容并存储在变量中(这可以通过selenium storeValue完成) 4. 打开另一个站点 http://baz.bar 5.登录网站 6.使用存储的内容在该站点中搜索

我的问题是哪个selenium命令将对应于步骤6。

我绞尽脑汁地浏览selenium参考,但未能找到这个特定的命令。

I need to create a following testcase in selenium and seek help
1.Open a site http://foo.bar in browser
2. log to site
3. select some content and store in a variable (this can be done through selenium storeValue)
4. Open another site http://baz.bar
5. login into site
6. use the stored content to search in that site

My question is which selenium command will correspond to step 6.

I have racked my brain going through selenium reference and am failing to find this particular command.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

标点 2024-11-10 05:29:49

下面的代码可能会帮助你。

selenium.open("http://air.irctc.co.in/");
selenium.waitForPageToLoad("3000");
String content= selenium.getText("link=www.irctc.co.in");
//System.out.println(cc);
selenium.open("http://www.google.com");
selenium.waitForPageToLoad("3000");
selenium.type("q",content);
selenium.click("btnG");
selenium.waitForPageToLoad("3000");

在上面的代码中,我在使用 Google 搜索后将链接存储在内容变量中。

The below code may help you.

selenium.open("http://air.irctc.co.in/");
selenium.waitForPageToLoad("3000");
String content= selenium.getText("link=www.irctc.co.in");
//System.out.println(cc);
selenium.open("http://www.google.com");
selenium.waitForPageToLoad("3000");
selenium.type("q",content);
selenium.click("btnG");
selenium.waitForPageToLoad("3000");

In the above code I am storing the link in a content variable after using Google Search.

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