-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Open
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsD-chromeI-defectSomething is not working as intendedSomething is not working as intendedOS-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();
Metadata
Metadata
Assignees
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!B-gridEverything grid and server relatedEverything grid and server relatedC-javaJava BindingsJava BindingsD-chromeI-defectSomething is not working as intendedSomething is not working as intendedOS-mac