Working on creating sections in TestRail.

This commit is contained in:
NissimHadar 2018-07-26 17:21:43 -07:00
parent 99ba550af5
commit 91c04bb639
2 changed files with 4 additions and 1 deletions

View file

@ -23,6 +23,9 @@ TestRailInterface::TestRailInterface() {
_testRailSelectorWindow.setURL("https://highfidelity.testrail.net/");
_testRailSelectorWindow.setUser("@highfidelity.io");
// 24 is the HighFidelity Interface project id in TestRail
_testRailSelectorWindow.setProject(24);
}
void TestRailInterface::createTestRailDotPyScript(const QString& outputDirectory) {

View file

@ -58,5 +58,5 @@ void TestRailSelectorWindow::setProject(const int project) {
}
int TestRailSelectorWindow::getProject() {
return projectLineEdit->getText().toInt();
return projectLineEdit->text().toInt();
}