Skip to content

Use navigator.userAgentData?.mobile for mobile lookup #5522

Open
@Jacalz

Description

@Jacalz

Checklist

  • I have searched the issue tracker for open issues that relate to the same feature, before opening a new one.
  • This issue only relates to a single feature. I will open new issues for any other features.

Is your feature request related to a problem?

We are currently parsing the string of navigator.platform to judge if we are running on mobile. This is not fool-proof as it depends a lot on which browser is used and so on. It has been deprecated in favour of navigator.userAgentData?.mobile which is a simple boolean telling us if we are running on mobile. Using the value would allow us to enable our mobile mode correctly on more devices (not sure if Linux mobile is working on our current setup even) but the downside is that userAgentData only is available over HTTPS and only in Chrome-based browsers as of today.

Related to #4754

Is it possible to construct a solution with the existing API?

Yes. See

var isMobile = regexp.MustCompile("Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile")
.

Describe the solution you'd like to see.

Use the new API when available but fall back to parsing userAgent platform otherwise.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Driver:webIssues related to web driver specificallyenhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions