How to use quitAllDriversOnHook method of com.qaprosoft.carina.core.foundation.listeners.CarinaListener class

Best Carina code snippet using com.qaprosoft.carina.core.foundation.listeners.CarinaListener.quitAllDriversOnHook

Source:CarinaListener.java Github

copy

Full Screen

...760 return screenId;761 } 762 public static class ShutdownHook extends Thread {763 private static final Logger LOGGER = LoggerFactory.getLogger(ShutdownHook.class);764 private void quitAllDriversOnHook() {765 // as it is shutdown hook just try to quit all existing drivers one by one766 for (CarinaDriver carinaDriver : driversPool) {767 // it is expected that all drivers are killed in appropriate AfterMethod/Class/Suite blocks768 String name = carinaDriver.getName();769 LOGGER.warn("Trying to quit driver '" + name + "' on shutdown hook action!");770 carinaDriver.getDevice().disconnectRemote();771 ProxyPool.stopProxy();772 try {773 LOGGER.debug("Driver closing..." + name);774 carinaDriver.getDriver().close();775 LOGGER.debug("Driver exiting..." + name);776 carinaDriver.getDriver().quit();777 LOGGER.debug("Driver exited..." + name);778 } catch (Exception e) {779 // do nothing780 }781 }782 }783 @Override784 public void run() {785 LOGGER.debug("Running shutdown hook");786 if (!Configuration.getBoolean(Parameter.FORCIBLY_DISABLE_DRIVER_QUIT)) {787 quitAllDriversOnHook();788 }789 }790 }791}...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful