This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Bobcat Actions
kkarolk edited this page Jul 12, 2016
·
3 revisions
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();
- Configuring Bobcat
- Selenium enhancements
- Cucumber enhancements
- Traffic analyzer
- Email support
- Reporting
- Cloud integration
- Mobile integration
- Executing tests on different environments
- Working with multiple threads
- Tips and tricks
- Authoring tutorial - Classic
- AEM Classic Authoring Advanced usage
- Siteadmin
- Sidekick
- Aem Component
- Working with author pages
- Working with Publish pages
- Advanced component interactions
- Working with Context Menu
- Using Aem Content Tree
- Aem Content Finder
- Storing component configurations
- Working with packages
- Jcr Support
- Authoring tutorial - Touch UI
- Adding and editing a component
- Sites management tutorial