Skip to content

[🐛 Bug]: A chain of Actions does not work #16316

@phongle1205

Description

@phongle1205

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

No one assigned

    Labels

    A-needs-triagingA Selenium member will evaluate this soon!B-gridEverything grid and server relatedC-javaJava BindingsD-chromeI-defectSomething is not working as intendedOS-mac

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions