单击输入按钮时。 它显示了另一个窗口。
我的代码是这样的。 单击并显示其他窗口。 (窗口名称windowB)
OpenMEMO <- remDr$findElement(using='id', value='form1:searchListTable')
OpenMEMO$clickElement()
做完之后,我想关闭windowB。
但我不知道该怎么做。
我尝试使用
#retrieve the current window handle
currWindow <- remDr$getCurrentWindowHandle()
#retrieve the list of window handles used in the session (I have 2 windows)
windows <- remDr$getWindowHandles()
#change focus to another window (windows[[2]] is windowB)
remDr$switchToWindow(windows[[2]])
#close the current window
remDr$closeWindow()
我运行remDr $ closeWindow()。 但它关闭了原来的窗口。 (实际上,我想关闭windowB)
也许我误解了代码的用法。
请给我一些建议。
感谢。
因为它是内联网,所以我无法提供网站链接。