我正在使用Java更新testrail中的测试用例。但是我在测试运行ID上遇到问题。我不想每次创建新运行时都进行更新,而是想在Java上创建运行并为每个测试用例使用ID。有没有办法做到这一点?另外我该如何前往testrail中的其他部分? 。这是我用来更新测试用例的代码。
public class close_how_to_play extends ConditionsWebDriverFactory{
public static String TEST_RUN_ID = "1741";
public static String TESTRAIL_USERNAME = "testgame@game.com";
public static String TESTRAIL_PASSWORD = "Password1";
public static String RAILS_ENGINE_URL = "https://testgame.testrail.com/";
public static final int TEST_CASE_PASSED_STATUS = 1;
public static final int TEST_CASE_FAILED_STATUS = 5;
@org.testng.annotations.Test
public void how_to_play() throws IOException, APIException {
Header header = new Header();
header.select_how_to_play();
HowToPlay howtoplay = new HowToPlay();
howtoplay.got_how_to_play();
addResultForTestCase("17107",TEST_CASE_PASSED_STATUS," ");
}
public static void addResultForTestCase(String testCaseId, int status,
String error) throws IOException, APIException {
String testRunId = TEST_RUN_ID;
APIClient client = new APIClient(RAILS_ENGINE_URL);
client.setUser(TESTRAIL_USERNAME);
client.setPassword(TESTRAIL_PASSWORD);
Map data = new HashMap();
data.put("status_id", status);
data.put("comment", "Test Executed - Status updated automatically from Selenium test automation.");
client.sendPost("add_result_for_case/"+testRunId+"/"+testCaseId+"",data );
}