Selenium WebDriverException: The expected mouse "id" must be mapped to an InputState whose subtype is undefined, received by: pointerMove

I have a problem with Selenium that I cannot figure out about. Also, I cannot find much information on this issue via Google.

My Selenium script does the following steps:

  • Log into Facebook.
  • Go to the list of friend suggestions.
  • Scroll down a few times (to load more offers).
  • Submit all sentences one by one on the console and ask the user if they should add a friend.

On confirmation, a chain of actions is created that navigates to the proposal in question, and then the add button is clicked.

But chaining doesn't work. I am getting the following error:

Potential friend name: 'John Doe'
Social context: 'Max Mustermann und 3 weitere gemeinsame Freunde'
Traceback (most recent call last):
  File "c:\...\facebook_selenium_minimal.py", line 74, in <module>
    main()
  File "c:\...\facebook_selenium_minimal.py", line 57, in main
    friend_add_button).perform()
  File "C:\Python36\lib\site-packages\selenium\webdriver\common\action_chains.py", line 77, in perform
    self.w3c_actions.perform()
  File "C:\Python36\lib\site-packages\selenium\webdriver\common\actions\action_builder.py", line 76, in perform
    self.driver.execute(Command.W3C_ACTIONS, enc)
  File "C:\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 238, in execute
    self.error_handler.check_response(response)
  File "C:\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 193, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Expected 'id' mouse to be mapped to InputState whose subtype is undefined, got: pointerMove

      

This is my selenium script:

import time

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait  # available since 2.4.0
from selenium.webdriver.support import expected_conditions as EC  # available since 2.26.0
from selenium.webdriver.common.action_chains import ActionChains

TIMEOUT = 5

def main():
    driver = webdriver.Firefox()
    driver.get("http://www.facebook.com")

    print(driver.title)

    input_mail = driver.find_element_by_id("email")
    input_password = driver.find_element_by_id("pass")

    input_mail.send_keys("your_login@example.com")
    input_password.send_keys("your_password")
    input_password.submit()

    try:
        WebDriverWait(driver, TIMEOUT).until(
            EC.visibility_of_element_located((By.NAME, "requests")))

        driver.get("https://www.facebook.com/friends/requests/?fcref=jwl")

        WebDriverWait(driver, TIMEOUT).until(
            EC.visibility_of_element_located((By.ID, "fbSearchResultsBox")))

        # Let Facebook load more friend proposals.
        for i in range(2):
            driver.execute_script("window.scrollTo(0, document.body.scrollHeight)")
            time.sleep(1.0)

        friend_proposals = driver.find_elements_by_class_name(
            "friendBrowserListUnit")

        for friend_proposal in friend_proposals:
            try:
                friend_title = friend_proposal.find_element_by_class_name(
                    "friendBrowserNameTitle")
            except NoSuchElementException:
                print("Title element could not be found. Skipping.")
                continue

            print("Potential friend name: '%s'" % friend_title.text)

            social_context = friend_proposal.find_element_by_class_name(
                "friendBrowserSocialContext")
            social_context_text = social_context.text
            print("Social context: '%s'" % social_context_text)

            friend_add_button = friend_proposal.find_element_by_class_name(
                "FriendRequestAdd")

            actions = ActionChains(driver)
            actions.move_to_element(friend_proposal).move_to_element(
                friend_add_button).perform()
            time.sleep(0.1)

            print("Should I add the friend (y/N): ")
            response = input()
            if response == "y":
                friend_add_button.click()
                time.sleep(1.0)
                print("Added friend...")

    except TimeoutException as exc:
        print("TimeoutException: " + str(exc))
    finally:
        driver.quit()

if __name__ == '__main__':
    try:
        main()
    except:
        raise

      

I am using the latest version of Selenium:

C:\Users\Robert>pip show selenium
Name: selenium
Version: 3.3.1

      

And I have Firefox 52.0.1 with geckodriver v0.15.0.

Update: . A quick test showed that the same script works flawlessly with Chrome Webdriver.

Update 2: This issue in the Selenium bugtracker on Github may be related: https://github.com/SeleniumHQ/selenium/issues/3642 p>

+3


source to share


2 answers


I ran into the same question today. You may have noticed that the first move_to_element and perform () worked - at least that was true in my case. To repeat this action, you must reset the chain of actions in the for loop:

actions.perform()



actions.reset_actions()

+2


source


For me-.perform fails the first time - I'm on selenium 3.3.1, gecko 15 and latest firefox using java - the same code works fine on chrome.



0


source







All Articles