-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Open
Labels
B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsD-chromeI-defectSomething is not working as intendedSomething is not working as intendedJ-awaiting answerQuestion asked of user; a reply moves it to triage againQuestion asked of user; a reply moves it to triage againOS-mac
Description
Description
Run a selenium test on Mac with a Linux docker. The test work well on Mac Mx but failed on Mac Intel.
Actions actions = new Actions(driver);
actions.keyDown(Keys.CONTROL).click(selenideElement).perform();
However, if we use separated action, it works
Actions actions = new Actions(driver);
actions.keyDown(Keys.CONTROL).perform();
selenideElement.click();
Reproducible Code
Actions actions = new Actions(driver);
actions.keyDown(Keys.CONTROL).click(selenideElement).perform();
iampopovich
Metadata
Metadata
Assignees
Labels
B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsD-chromeI-defectSomething is not working as intendedSomething is not working as intendedJ-awaiting answerQuestion asked of user; a reply moves it to triage againQuestion asked of user; a reply moves it to triage againOS-mac