npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

chromecast-webdriver-server

v1.2.0

Published

A WebDriver server that pushes URLs to Chromecast, built on generic-webdriver-server.

Downloads

15

Readme

Chromecast WebDriver Server

A WebDriver server for Chromecast, implementing the subset of the WebDriver protocol necessary for Karma. Add Chromecast to your Selenium grid!

Part of the Generic WebDriver Server family.

Installation

npm install --save-dev generic-webdriver-server chromecast-webdriver-server

Usage

First, please refer to the "Setup" doc for Generic WebDriver Server. That will explain how to set up Selenium to talk to Generic WebDriver Servers, as well as how to set server parameters.

In the command-line for the Selenium node, set the following Java system properties:

  • genericwebdriver.browser.name: We recommend the value "chromecast". See also notes in the "Setup" doc.
  • genericwebdriver.backend.exe: The path to the executable, such as node_modules/chromecast-webdriver-server/chromecast-webdriver-server.js
  • genericwebdriver.backend.params.hostname: The hostname or IP address of the Chromecast device, with optional port number. If omitted, this must be provided in the client's desired capabilities instead. (See below.)

Supported parameters

This backend supports the following parameters:

  • hostname: (required) The hostname or IP address of the Chromecast device, with optional port number.
  • receiver-app-id: The receiver app ID to load, in case you want to host your own copy. (See also receiver-deployment.md)
  • idle-timeout-seconds: The timeout for idle sessions, after which they will be closed.
  • connection-timeout-seconds: The connection timeout for the Chromecast, after which the corresponding WebDriver operation will fail.

Chromecast receiver deployment

Deploying your own copy of the Chromecast receiver is completely optional. Doing so would allow you to:

  1. Make changes to the receiver app that affect your clients
  2. Not depend on github.io being up or accessible from your network

Unless you need one of these things, we recommend using the default receiver app ID, which points to a copy served by github.io.

To learn how to deploy your own copy of the Chromecast Receiver, see receiver-deployment.md for details.

How it works

See how-it-works.md for details.

Tunneling to a Chromecast on another network

See tunneling.md for details.

Using the CLI

In addition to running a Chromecast node in Selenium, this package offers a CLI for directing a Chromecast to a specific URL. For example, if installed globally with npm install -g chromecast-webdriver-server:

chromecast-webdriver-cli --hostname=192.168.1.42 \
  --url=https://shaka-player-demo.appspot.com/demo/

Access Limitations

We show an arbitrary URL on the device by embedding it into an iframe in our Chromecast receiver app. However, sites can prevent iframe-embedding with the X-Frame-Options header.

Though this should not be an issue for a test runner, this may affect other URLs. Unfortunately, there is no way for the receiver app to detect when this has happened. See: https://github.com/shaka-project/generic-webdriver-server/issues/8