This repository was archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
AEM Login
Mariusz Kubiś edited this page Jul 14, 2016
·
2 revisions
The AemLogin class enables automatic authorization into AEM, without the need to actually input user login and password.
AemLogin authorizes user in the domain specified by author.url property. It's API provides methods for:
logging in as the default user specified in the instances.properties file (author.login and author.password)
logging in as a custom user by providing login and password in method parameters
logging out
To use the feature, simply inject the AemLogin into your test class and call authorLogin() method in an initialization method before your test.
Example usage
@Inject
private AemLogin aemLogin;
@Before
public void setup() {
aemLogin.authorLogin();
}
@Test
public void authorTest() {
// test authorized within the AEM author instance
}- 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