You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey I came across, what I think is a bug when rewriting a query to access a menu form the main menu bar.
In order to be able to use script the menu bar I had to pass this system property (apple.laf.useScreenMenuBar=false) as mentioned in my comment #17 (comment)
Hey I came across, what I think is a bug when rewriting a query to access a menu form the main menu bar.
In order to be able to use script the menu bar I had to pass this system property (
apple.laf.useScreenMenuBar=false
) as mentioned in my comment #17 (comment)I wrote this code
robot.find(byXpath("//div[@text='${path[0]}']//div[@text='${path[1]}']"))
And when replacing it with
JPopupMenuFixture
, thefind
method failed because two fixtures of the same menu showed up.To workaround this I replaced
find
byfindAll
and taking the first item.The text was updated successfully, but these errors were encountered: