
com.infotel.seleniumrobot.grid.tasks.EndTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seleniumRobot-grid Show documentation
Show all versions of seleniumRobot-grid Show documentation
Selenium grid extension for mobile testing
The newest version!
package com.infotel.seleniumrobot.grid.tasks;
import org.apache.log4j.Logger;
/**
* Task to end the current grid node/hub
* @author s047432
*
*/
public class EndTask implements Task {
private static final Logger logger = Logger.getLogger(EndTask.class);
@Override
public void execute() {
logger.info("requested node stop");
System.exit(0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy