Setting custom user agent

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

A user agent is a string of text that a browser sends to a web server to identify itself, including details about the browser type, operating system, and device.

In ⁠chromote, setting the user agent allows you to simulate requests from different browsers or devices. This is useful for testing how websites behave in various environments, scraping data by mimicking real user behavior, accessing mobile versions of sites, or bypassing restrictions some websites place on certain browsers.

You can see the user agent string provided by your browser, or a list of other user agents strings, by using a site like https://UserAgentString.com.

Synchronous version

library(chromote)
b <- ChromoteSession$new()

b$Network$setUserAgentOverride(userAgent = "My fake browser")

b$Page$navigate("http://scooterlabs.com/echo")
b$screenshot(show = TRUE)

Asynchronous version

library(chromote)
b <- ChromoteSession$new()

b$Network$setUserAgentOverride(userAgent = "My fake browser", wait_ = FALSE)
p <- b$Page$loadEventFired(wait_ = FALSE)
b$Page$navigate("http://scooterlabs.com/echo", wait_ = FALSE)
p$then(function(value) {
  b$screenshot(show = TRUE)
})


Try the chromote package in your browser

Any scripts or data that you put into this service are public.

chromote documentation built on April 4, 2025, 1:43 a.m.