DmitryBogatko
DmitryBogatko
I have following code: ``` var browser = AqualityServices.Browser; browser.GoTo("some-url"); await browser.DevTools.EnablePerfomanceMonitoring(); var submitBtn = AqualityServices.Get().GetButton(By.Id("some-id"), "Telecash payment submit"); // driver will be crashed on the next line submitBtn.ClickAndWait(); ```...
At the moment AquaityService uses ThreadLocal to keep AppContainer and ServiceProviderContainer instances. But it brings problems if you want to make your tests to be used in async context. To...
Provide access to DriverService and potentially any others objects which are involved into webdriver instantiation. With access to DriverService you can get chromedriver process id and manipulate with it if...