Appian Selenium API

Overview

The library contains methods which allow you to interact with Appian components in a browser. It can be used in a Java application or integrated directly into any Selenium or Java-based testing tool.

Appian Selenium API contains the methods that are at the core of both Cucumber for Appian and FitNesse for Appian. If you are familiar with either Appian’s FitNesse or Cucumber tools then you are already familiar with the methods provided by the Appian Selenium API. For example, the table below shows the corresponding FitNesse and Cucumber methods for the same underlying Appian Selenium API method.

Appian Selenium API

loginWithUsernameAndPassword(jString userName, String password)

FitNesse for Appian

| login with username | USERNAME | and password | PASSWORD |

Cucumber for Appian

Given I login with username "USERNAME" and password "PASSWORD"

Note: Java 11 required for plugin version 23.4

Key Features & Functionality

The Appian Selenium API plug-in package includes:

  • The Appian Selenium API jar
  • Javadocs
  • An example of how to use the API in a Java application
  • An example of how to use the API in a Cucumber test 

The Appian Selenium API plug-in supports both Chrome and Firefox browsers. See the Appian Playbook for more information: Automated Testing with Appian Selenium API

Note on Appian Versions:

With each Appian release, a new version of the plug-in is also released to support the latest Appian components. This plug-in is backwards compatible, ensuring that you do not need to update your test cases when upgrading to new Appian versions.

Anonymous
Parents
  • How do I select value from a drop down? I tried fixture.populateDropDownSearchBoxWith but it doesn't work.


    fixture.setTakeErrorScreenshotsTo(true);
    fixture.setupWithBrowser(TEST_BROWSER);
    fixture.setAppianUrlTo(TEST_SITE_URL);
    fixture.setTimeoutSecondsTo(TEST_TIMEOUT);
    fixture.setAppianVersionTo(TEST_SITE_VERSION);
    fixture.setAppianLocaleTo(TEST_SITE_LOCALE);
    fixture.loginWithUsername(TEST_USERNAME);
    fixture.clickOnMenu("AML");
    fixture.clickOnButton("New");
    fixture.verifyButtonIsPresent("New");
    fixture.populateDropDownSearchBoxWith("country",'nepal')
  • try populateFieldWith or populateFieldWithValue

  • Two options:

    Better option: the developer adds the label into the sail code, but sets the labelPosition to "COLLAPSED".

    Worse option: try to find the field another way like absolute location on the form, e.g. populateFieldWithValue("[5]", "Nepal") would populate the 5th field on the form, or if it has a tooltip, placeholder, or instructions you could use those corresponding populateFieldWith<Placeholder/Instructions/Tooltip> methods.

  • Hi Michael,

    You are correct. Its seems to be because of rich text. Where-

    ever developer has used label are working fine but where-ever they have used rich text.. it is not identifying. Please suggest what is a workaround.

Comment Children
  • Two options:

    Better option: the developer adds the label into the sail code, but sets the labelPosition to "COLLAPSED".

    Worse option: try to find the field another way like absolute location on the form, e.g. populateFieldWithValue("[5]", "Nepal") would populate the 5th field on the form, or if it has a tooltip, placeholder, or instructions you could use those corresponding populateFieldWith<Placeholder/Instructions/Tooltip> methods.