Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Bobcat Actions

kkarolk edited this page Jul 12, 2016 · 3 revisions

Bobcat Actions

Selenium reference: https://github.com/SeleniumHQ/selenium/wiki/Advanced-User-Interactions

Selenium offers Advanced User Interactions API for describing actions a user can perform on a web page. This includes actions such as drag and drop or clicking multiple elements while holding down the Control key. Out of the box usage is to create new Actions object:

Actions actions = new Actions(driver);
actions.moveToElement(webElement).clickAndHold().perform();

Bobcat allows to inject Actions object, so there is no need to create it every time:

@Inject 
private Actions actions;
 
//...
 
actions.moveToElement(webElement).clickAndHold().perform();

Getting started with Bobcat

  1. Getting started

AEM Related Features

  1. Authoring tutorial - Classic
  1. AEM Classic Authoring Advanced usage
  1. Authoring tutorial - Touch UI
Clone this wiki locally