THIS PROJECT IS ARCHIVED. ALL PACKAGES IN THIS REPO HAVE MOVED INTO THE MAIN APPIUM REPO at https://github.com/appium/appium
Note:
- Package names have not changed, but the directory names all have the
-plugin
suffix. They still live in thepackages/
subdir.- As of this writing (April 14 2022), the packages are not in the
master
branch--they are in the2.0
branch--but will be in the default branch (main
) in the near future.
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.
You can follow this guide to create your own Appium plugin.
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 --use-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')
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 {}
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)
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 static async updateServer
method in your class. This method takes two parameters:
expressApp
: the Express app objecthttpServer
: 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!
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 anasync
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 includeawait 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
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 static 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
.
Note that the information about avoiding proxying above also applies to new commands that you've added. But to make life easy, instead of implementing shouldAvoidProxy
for these cases, you can simply add the neverProxy: true
field to your command specifier (see examples in the Fake Plugin class).
When developing a plugin you may want to add some cleanup logic by handling deleteSession
. This works in most cases, except when the session does not finish cleanly. Appium sometimes determines that a session has finished unexpectedly, and in these situations, Appium will look for a method called onUnexpectedShutdown
in your plugin class, which will be called (passing the current session driver as the first parameter, and the error object representing the cause of the shutdown as the second), giving you an opportunity to take any steps that might be necessary to clean up from the session. For example, keeping in mind that the function is not await
ed you could implement something like this:
async onUnexpectedShutdown(driver, cause) {
try {
// do some cleanup
} catch (e) {
// log any errors; don't allow anything to be thrown as they will be unhandled rejections
}
}
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!