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

element34

v0.0.4

Published

Client side browser automation suite which utilizes selenium to drive various web browsers

Downloads

6

Readme

element34

element34 is a relatively small wrapper around selenium for nodejs

Goals

  • Works on MacOSX and Linux
  • Can automatically detect which browsers are available and will take the necessary steps to use them
  • Supported browsers: firefox, chrome, opera, safari, android, ios

Example

element34 primarily focuses on setting up the browser and performing all the necessary steps to just make things work, and when it does it will hand back a browser object which implements the selenium API as documented here: http://seleniumhq.org/docs/02_selenium_ide.jsp#selenium-commands-selenese

	var element34 = require('../index.js');
	var assert = require('assert');


	element34.browsers(function(err,browsers){
		console.log("Installed browsers are:",browsers);
	});

	var b = new element34.chrome();

	b.open("http://seleniumhq.org",function(error,browser){
		assert.equal(error,null);
		if(browser==null){
			return console.error("Browser not found");
		}
		browser.open("/",function(){
			browser.getTitle(function(error,title){
				console.log(title);
				assert.equal(title.indexOf("Selenium"),0);
				setTimeout(function(){
					browser.close(function(){
					});
				},1000);
			});	
		});
	});

Installation

	npm install element34

Browsers

Firefox

Firefox should just work

Chrome

element34 will download a platform specific driver to get Chrome to work

Opera

Opera should just work

Safari

element34 will prompt for the installation of a safari extension which is required for Safari to work

Android

element34 will attempt to locate the android sdk by looking in ~/ ~/Desktop/ and ANDROID_SDK for the location of the android SDK, if it is found then element34 will see if any android devices are either being emulated or attached to the emulator, and if so it will install the requisite android test application and connect to it.

iOS / iPhone / iPad

Unfortunately the steps required to automate testing of iOS platforms aren't implemented yet, but if you follow the directions here and have an iOS emulator running with the WebDriver app running then element34 will attempt to connect to it and perform testing. See here for details on how to install and compile the iOS webdriver:

http://code.google.com/p/selenium/wiki/IPhoneDriver

Known issues

  • The chrome driver will occasional fail to download all the required drivers, re-running it will usually work
  • It is uncertain if iOS support works, make sure your using an iOS 5.x device

License

element34 is under a MIT license

Attribution

element34 is based upon node-selenium-inproc by ddopson (https://github.com/ddopson/node-selenium-inproc)