0

Selenium IDE : I am trying to open a link in new tab using controlkey or contextmenu and both commands did not work.
USING CONTROLKEY : 1). verify element present 2)controlkeydown() 3) click link 4) controlkeyup(). when executed, it displays the error unknown command (control key().

USING CONETXTMENU : 1 ) Verify element present 2) contextmenu target link=linkname 3) click target = link

4

2 回答 2

2

如何从链接中提取 href 属性并使用它通过单独的命令打开一个新窗口?

|商店属性 | SOME_LOCATOR@href | 我的链接 |

|打开窗口 | ${我的链接} | |

编辑:更具体的例子

|打开 | http://twitter.com | |

|商店属性 | 链接=关于@href | 我的链接 |

|打开窗口 | ${我的链接} | |

这将在新窗口中打开 Twitter 的“关于”页面。

于 2013-08-16T22:24:00.237 回答
1

我对你的建议是不要测试这个。您尝试测试的两个项目都是浏览器本身的功能,而不是 Web 应用程序的功能。因此,如果您的目标是测试 Web 应用程序,那么您不会通过测试浏览器来增加任何价值。

于 2013-08-17T13:40:57.320 回答