com.sdl.selenium.web.RunExe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.web;
import com.sdl.selenium.utils.config.WebLocatorConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
public class RunExe {
private static final Logger LOGGER = LoggerFactory.getLogger(RunExe.class);
private static RunExe instance = new RunExe();
private RunExe() {
}
public static RunExe getInstance() {
return instance;
}
public boolean download(String filePath) {
return doRun(filePath);
}
public boolean download(String downloadWindowName, String filePath) {
return doRun(filePath + " " + downloadWindowName);
}
public boolean upload(String filePath) {
return doRun(WebLocatorConfig.getUploadExePath() + " \"" + filePath + "\"");
}
private boolean doRun(String filePath) {
try {
Process process = Runtime.getRuntime().exec(filePath);
LOGGER.debug(filePath);
if (0 == process.waitFor()) {
return true;
}
} catch (InterruptedException | IOException e) {
e.printStackTrace();
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy