如何在另一个窗口中使用selenium storeValue
我需要在硒中创建以下测试用例并寻求帮助 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的代码可能会帮助你。
在上面的代码中,我在使用 Google 搜索后将链接存储在内容变量中。
The below code may help you.
In the above code I am storing the link in a content variable after using Google Search.