'Can't import TouchActions in selenium (python)

and thanks in advance. I have a problem with selenium. I can't import the TouchActions implementation in any way. I tried:

from selenium import webdriver
#imp. keys
from selenium.webdriver.common.keys import Keys
#imp. touch actions
from selenium.webdriver.common.touch_actions import TouchActions
#imp. time
import time

and it doesn't work because it gives me the ModuleNotFoundError: No module named 'selenium.webdriver.common.touch_actions' ERROR. I have installed pip3 and everything else from selenium seems to work fine (like It makes me import ActionChains). I do not know what to do....



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source