Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hover on element is not working #888

Open
pppppino opened this issue Jul 5, 2023 · 3 comments
Open

Hover on element is not working #888

pppppino opened this issue Jul 5, 2023 · 3 comments

Comments

@pppppino
Copy link

pppppino commented Jul 5, 2023

Environment:
Appium-Python-Client 2.11.1
Windows desktop app,
My Env is Ok, since I have done many automation work

I want to hover on element, I have tried:
ActionChains(self.driver).move_to_element(ele).perform(),
I got an exception:
> raise exception_class(msg=message, stacktrace=format_stacktrace(stacktrace)) E selenium.common.exceptions.UnknownMethodException: Message: Currently only pen and touch pointer input source types are supported E Stacktrace: E UnsupportedOperationError: Currently only pen and touch pointer input source types are supported

then I tried:
TouchAction(self.driver).move_to(ele).perform(), I found it directly click the target instead of hover on it!

then I tried:
ActionChains(self.driver).w3c_actions.pointer_action.move_to(ele), and it do not work

Is there any other method to achieve this?

@KazuCocoa
Copy link
Member

Maybe you need to use touch input like

touch_input = PointerInput(interaction.POINTER_TOUCH, 'touch')
actions = ActionChains(self)
actions.w3c_actions = ActionBuilder(self, mouse=touch_input)
# https://github.com/SeleniumHQ/selenium/blob/3c82c868d4f2a7600223a1b3817301d0b04d28e4/py/selenium/webdriver/common/actions/pointer_actions.py#L83
actions.w3c_actions.pointer_action.move_to(origin_el)
actions.w3c_actions.pointer_action.pointer_down()
# setup duration for second move only, assuming duration always has atleast default value
actions.w3c_actions = ActionBuilder(self, mouse=touch_input, duration=duration)
actions.w3c_actions.pointer_action.move_to(destination_el)
actions.w3c_actions.pointer_action.release()
actions.perform()
for the env. I guess your code sent mouse .

@mykola-mokhnach
Copy link
Contributor

@KazuCocoa I assume touch pointers do not have a "hover" concept. Only mouse does it

@pppppino
Copy link
Author

@KazuCocoa I have tried it, but it not works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants