Selenium chrome mobile emulation with touch feature

146 Views Asked by At

mobile emulation with device metrics as instructions:


"deviceMetrics" => { "width" => 360, "height" => 640, "pixelRatio" => 3.0, touch: true }

touch feature

The code runs well except the touch feature, the screen can't be touched, slipped, and cant't trigger any touch event.

It seems that touch screen feature has been deprecated. How to active the touch feature?

Similar to the question:

Selenium - mobile emulation (chrome dev tools) not showing touch circle

I run the code with Ruby and Python.

Python env:

Python 3.7.7 selenium 4.11.2 selenium-wire 5.1.0

Chrome 116.0.5845.187 ChromeDriver 116.0.5845.96

code:

mobile_emulation = {
    "deviceMetrics": { "width": 360, "height": 640, "pixelRatio": 3.0, "touch": True, "mobile": True },
    "userAgent": "Mozilla/5.0 (Linux; Android 11; SM-G977U Build/RP1A.200720.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36",
    "clientHints": {"platform": "Android", "mobile": True} }

chrome_options = Options()
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
chrome_options.add_experimental_option("detach",True)

driver = webdriver.Chrome(chrome_options = chrome_options)
0

There are 0 best solutions below