Questions tagged [arquillian-drone]

The Arquillian Drone extension enables developers to effortlessly incorporate functional testing with a web-based user interface into their application.

Is there a feature similar to notifyWhenNoOutstandingRequests in Angular 2?

In my experience, test frameworks like Arquillian have utilized this method to determine when the DOM is ready for inspection with Angular 1. I am curious if there is a similar approach for accomplishing this in Angular 2? ...

Implementing @BeforeSuite to run after setting up the webdriver instance in Arquillian

I am facing an issue with using @BeforeSuite after the instantiation of WebDriver in Arquillian. Below is an example: @RunAsClient public class GoogleTest extends Arquillian { @Drone private WebDriver driver; @ArquillianResource private ...