Chromeless provides TypeScript typings.
Chromeless constructor options
new Chromeless(options: ChromelessOptions)
debug: boolean
Show debug output — Default:false
remote: boolean
Use remote chrome process — Default:false
implicitWait: boolean
Wait for element to exist before executing commands — Default:false
waitTimeout: number
Time in ms to wait for element to appear — Default:10000
scrollBeforeClick: boolean
Scroll to element before clicking, usefull if element is outside of viewport — Default:false
viewport: any
Viewport dimensions — Default:{width: 1440, height: 900, scale: 1}
launchChrome: boolean
Auto-launch chrome (local) — Default:true
cdp: CDPOptions
Chome Debugging Protocol Options — Default:{host: 'localhost', port: 9222, secure: false, closeTab: true}
Chromeless methods
Chrome methods
goto(url: string)
setUserAgent(useragent: string)
click(selector: string)
wait(timeout: number)
wait(selector: string, timeout?: number)
- [
wait(fn: (...args: any[]) => boolean, ...args: any[])
] - Not implemented yet clearCache()
focus(selector: string)
press(keyCode: number, count?: number, modifiers?: any)
type(input: string, selector?: string)
back()
- Not implemented yetforward()
- Not implemented yetrefresh()
- Not implemented yetmousedown(selector: string)
mouseup(selector: string)
scrollTo(x: number, y: number)
scrollToElement(selector: string)
setHtml(html: string)
setViewport(options: DeviceMetrics)
evaluate<U extends any>(fn: (...args: any[]) => void, ...args: any[])
inputValue(selector: string)
exists(selector: string)
screenshot(selector: string, options: ScreenshotOptions)
pdf(options?: PdfOptions)
html()
cookies()
cookies(name: string)
cookies(query: CookieQuery)
- Not implemented yetallCookies()
setCookies(name: string, value: string)
setCookies(cookie: Cookie)
setCookies(cookies: Cookie[])
deleteCookies(name: string)
clearCookies()
End the Chromeless session. Locally this will disconnect from Chrome. Over the Proxy, this will end the session, terminating the Lambda function. It returns the last value that has been evaluated.
await chromeless.end()
Navigate to a URL.
Arguments
url
- URL to navigate to
Example
await chromeless.goto('https://google.com/')
Set the useragent of the browser. It should be called before .goto()
.
Arguments
useragent
- UserAgent to use
Example
await chromeless.setUserAgent('Custom Chromeless UserAgent x.x.x')
Click on something in the DOM.
Arguments
selector
- DOM selector for element to click
Example
await chromeless.click('#button')
Wait for some duration. Useful for waiting for things download.
Arguments
timeout
- How long to wait, in ms
Example
await chromeless.wait(1000)
Wait until something appears. Useful for waiting for things to render.
Arguments
selector
- DOM selector to wait fortimeout
- How long to wait for element to appear (default is value of waitTimeout option)
Example
await chromeless.wait('div#loaded')
await chromeless.wait('div#loaded', 1000)
Not implemented yet
Wait until a function returns. You can also return some Promise that will be resolved at some point.
Arguments
fn
- Function to wait for[arguments]
- Arguments to pass to the function
Example
await chromeless.wait(() => {
return new Promise((resolve, reject) => {
// do something async, setTimeout...
resolve();
});
})
Clears browser cache.
Service workers and Storage (IndexedDB, WebSQL, etc) needs to be cleared separately. More information at the Chrome Devtools Protocol website.
Example
await chromeless.clearCache()
Provide focus on a DOM element.
Arguments
selector
- DOM selector to focus
Example
await chromeless.focus('input#searchField')
Send a key press. Enter, for example.
Arguments
keyCode
- Key code to sendcount
- How many times to send the key pressmodifiers
- Modifiers to send along with the press (e.g. control, command, or alt)
Example
await chromeless.press(13)
Type something (into a field, for example).
Arguments
input
- String to typeselector
- DOM element to type into
Example
const result = await chromeless
.goto('https://www.google.com')
.type('chromeless', 'input[name="q"]')
Not implemented yet
Not implemented yet
Not implemented yet
Send mousedown event on something in the DOM.
Arguments
selector
- DOM selector for element to send mousedown event
Example
await chromeless.mousedown('#item')
Send mouseup event on something in the DOM.
Arguments
selector
- DOM selector for element to send mouseup event
Example
await chromeless.mouseup('#placeholder')
Scroll to somewhere in the document.
Arguments
x
- Offset from the left of the documenty
- Offset from the top of the document
Example
await chromeless.scrollTo(0, 500)
Scroll to location of element. Behavior is simiar to <a href="#fragment"></a>
— target element will be at the top of viewport
Arguments
selector
- DOM selector for element to scroll to
Example
await chromeless.scrollToElement('.button')
Sets given markup as the document's HTML.
Arguments
html
- HTML to set as the document's markup.
Example
await chromeless.setHtml('<h1>Hello world!</h1>')
Sets extra HTTP headers.
Arguments
headers
- headers as keys / values of JSON object
Example
await chromeless.setExtraHTTPHeaders({
'accept-language': 'en-US,en;q=0.8'
})
Resize the viewport. Useful if you want to capture more or less of the document in a screenshot.
Arguments
options
- DeviceMetrics object
Example
await chromeless.setViewport({width: 1024, height: 600, scale: 1})
Evaluate Javascript code within Chrome in the context of the DOM. Returns the resulting value or a Promise.
Arguments
fn
- Function to evaluate within Chrome, can be async (Promise).[arguments]
- Arguments to pass to the function
Example
await chromeless.evaluate(() => {
// this will be executed in Chrome
const links = [].map.call(
document.querySelectorAll('.g h3 a'),
a => ({title: a.innerText, href: a.href})
)
return JSON.stringify(links)
})
Get the value of an input field.
Arguments
selector
- DOM input element
Example
await chromeless.inputValue('input#searchField')
Test if a DOM element exists in the document.
Arguments
selector
- DOM element to check for
Example
await chromeless.exists('div#ready')
Take a screenshot of the document as framed by the viewport or of a specific element (by a selector). When running Chromeless locally this returns the local file path to the screenshot image. When run over the Chromeless Proxy service, a URL to the screenshot on S3 is returned.
Arguments
selector
- DOM element to take a screenshot of,options
- An options object with the following propsoptions.filePath
- A file path override in case of working locally
Examples
const screenshot = await chromeless
.goto('https://google.com/')
.screenshot()
console.log(screenshot) // prints local file path or S3 URL
const screenshot = await chromeless
.goto('https://google.com/')
.screenshot('#hplogo', { filePath: path.join(__dirname, 'google-logo.png') })
console.log(screenshot) // prints local file path or S3 URL
const screenshot = await chromeless
.goto('https://google.com/')
.screenshot({ filePath: path.join(__dirname, 'google-search.png') })
console.log(screenshot) // prints local file path or S3 URL
Print to a PDF of the document as framed by the viewport. When running Chromeless locally this returns the local file path to the PDF. When run over the Chromeless Proxy service, a URL to the PDF on S3 is returned.
Requires that Chrome be running headless-ly. More
Arguments
options
- An object containing overrides for printToPDF() parameters
Example
const pdf = await chromeless
.goto('https://google.com/')
.pdf({landscape: true})
console.log(pdf) // prints local file path or S3 URL
Get full HTML of the loaded page.
Example
const html = await chromeless
.setHtml('<h1>Hello world!</h1>')
.html()
console.log(html) // <html><head></head><body><h1>Hello world!</h1></body></html>
Returns all browser cookies for the current URL.
Example
await chromeless.cookies()
Returns a specific browser cookie by name for the current URL.
Arguments
name
- Name of the cookie to get
Example
const cookie = await chromeless.cookies('creepyTrackingCookie')
Not implemented yet
Returns all browser cookies. Nam nom nom.
Example
await chromeless.allCookies()
Sets a cookie with the given name and value.
Arguments
name
- Name of the cookievalue
- Value of the cookie
Example
await chromeless.setCookies('visited', '1')
Sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.
Arguments
cookie
- The cookie data to set
Example
await chromeless.setCookies({
url: 'http://google.com/',
domain: 'google.com',
name: 'userData',
value: '{}',
path: '/',
expires: 0,
size: 0,
httpOnly: false,
secure: true,
session: true,
})
Sets many cookies with the given cookie data; may overwrite equivalent cookies if they exist.
Arguments
url
- URL to navigate to
Example
await chromeless.setCookies([
{
url: 'http://google.com/',
domain: 'google.com',
name: 'userData',
value: '{}',
path: '/',
expires: 0,
size: 0,
httpOnly: false,
secure: true,
session: true,
}, {
url: 'http://bing.com/',
domain: 'bing.com',
name: 'userData',
value: '{}',
path: '/',
expires: 0,
size: 0,
httpOnly: false,
secure: true,
session: true,
}
])
Delete a specific cookie.
Arguments
name
- name of the cookie
Example
await chromeless.deleteCookies('cookieName')
Clears all browser cookies.
Example
await chromeless.clearCookies()
Clear input text.
Example
await chromeless.clearInput('#username')
Set file(s) for selected file input.
Currently not supported in the Proxy. Progress tracked in #186
Example
await chromeless.setFileInput('.uploader', '/User/Me/Documents/img.jpg')