Socket
Book a DemoInstallSign in
Socket

@appium/base-plugin

Package Overview
Dependencies
Maintainers
6
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appium/base-plugin

The base plugin used to create Appium 2.0 plugins

Source
npmnpm
Version
1.6.1
Version published
Weekly downloads
346K
-15.6%
Maintainers
6
Weekly downloads
 
Created
Source

Appium Base Plugin

The base class used to create Appium plugins. This plugin should not be installed directly as it does nothing. Instead, you extend this plugin when creating your own Appium plugins.

Steps to create your own plugin

You can follow this guide to create your own Appium plugin.

1. Initialize a Node.js project

Appium plugins are Node.js programs, though of course you can call out to any other language or framework you want in the course of executing Node.js code. The basic requirement for an Appium plugin is to add certain metadata fields in your project's package.json, for example:

{
  ...,
  "appium": {
    "pluginName": "your-plugin-name",
    "mainClass": "YourPlugin",
  },
  ...
}

Here the pluginName is the name used to activate your plugin by users who have installed it. So if your pluginName is cool-plugin, they would activate it as follows:

appium --plugins=cool-plugin

The same goes for updating and removing the plugin using the CLI.

The mainClass value is the name that Appium should import from your project's entrypoint. So for example if somewhere in your project you have defined your plugin as follows:

class CoolPlugin extends BasePlugin {
  ...
}

Then you need to make sure that Appium can import/require this name from your node package:

const { CoolPlugin } = require('someones-cool-plugin')

2. Create your Plugin class by extending BasePlugin

As implied above, your project should export a class which extends BasePlugin. This means you need to add BasePlugin as a project dependency:

npm install --save @appium/base-plugin

Then you can create a class which extends it:

import BasePlugin from '@appium/base-plugin'

class CoolPlugin extends BasePlugin {}

3. Implement your Plugin class

Your plugin can do one or more of 3 basic things:

  • Update the Appium server object before it starts listening for requests
  • Handle Appium commands in lieu of the driver which would normally handle them
  • Add new routes/commands to Appium (which your plugin must then handle)

Updating the server

You probably don't normally need to update the Appium server object (which is an Express server having already been configured in a variety of ways). But, for example, you could add new Express middleware to the server to support your plugin's requirements. To update the server you must implement the async updateServer method in your class. This method takes two parameters:

  • expressApp: the Express app object
  • httpServer: the Node HTTP server object

You can do whatever you want with them inside the updateServer method. You might want to reference how these objects are created and worked with in the BaseDriver code, so that you know you're not undoing or overriding anything standard and important. But if you insist, you can, with results you'll need to test!

Handling Appium commands

This is the most normal behavior for Appium plugins -- to modify or replace the execution of one or more commands. To override the default command handling, you need to implement async methods in your class with the same name as the Appium commands to be handled (just exactly how drivers themselves are implemented). Curious what command names there are? They are defined in the Appium base driver's routes.js file, and of course you can add more as defined in the next section.

Each command method is sent the following arguments:

  • next: This is a reference to an async function which encapsulates the chain of behaviors which would take place if this plugin were not handling the command. You can choose to call the next behavior in the chain at any point in your logic (by making sure to include await next() somewhere), or not. If you don't, it means the default behavior (or any plugins registered after this one) won't be run.
  • driver: This is the object representing the driver handling the current session. You have access to it for any work you need to do, for example calling other driver methods, checking capabilities or settings, etc...
  • ...args: A spread array with any arguments that have been applied to the command by the user.

You might find yourself in a position where you want to handle all commands, in order to inspect payloads to determine whether or not to act in some way. If so, you can implement async handle, and any command that is not handled by one of your named methods will be handled by this method instead. It takes the following parameters (with all the same semantics as above):

  • next
  • driver
  • cmdName - string representing the command being run
  • ...args

Adding new routes/commands

You might decide that you want to add some new routes or commands to the Appium server, which could be called by clients. To do this, you should assign the newMethodMap class variable to an object containing a set of routes and command names and arguments. The format of this object should exactly match the format of the METHOD_MAP object in Appium's routes definition. Of course, just adding commands here does not implement them: you will also need to check for any new command names in your handle method to handle them, since by default there will be no implementation of commands added via newMethodMap.

Tips

All of this is a lot to digest, and it's often easier to have a look at examples. The various plugins inside this monorepo are a good way to get familiar with what plugins can do!

FAQs

Package last updated on 20 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts