我正在使用Geb编写测试。我使用的浏览器是Firefox。我想点击菜单按钮后出现的下拉列表。我可以点击菜单按钮,它给我下拉列表,但我无法选择我想要的项目,Firefox只是挂起。 Chrome工作得很好。
这是我的代码:
container.menuButton.click() // this works fine. A list of appears.
container.menuOption("Coke").click() // the selection doesn't happen here it just hangs
如何让Firefox工作?