Skip to content

Commit

Permalink
Merge pull request #157 from abertnamanya/main
Browse files Browse the repository at this point in the history
fix modify testname
  • Loading branch information
abertnamanya authored Jul 24, 2023
2 parents e827de0 + 0144cc7 commit d38669c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ public class TestManagementPage extends Page {

private static By TEST_NAMES = By.cssSelector("table tbody tr td .textButton");

private static By NAME_ENG_FIELD = By.name("nameEnglish");
private static By NAME_ENG_FIELD = By.cssSelector("input#nameEnglish");

private static By NAME_FR_FIELD = By.name("nameFrench");
private static By NAME_FR_FIELD = By.cssSelector("input#nameFrench");

private static By REPORT_NAME_ENG_FIELD = By.name("reportNameEnglish");
private static By REPORT_NAME_ENG_FIELD = By.cssSelector("input#reportNameEnglish");

private static By REPORT_NAME_FR_FIELD = By.name("reportNameFrench");
private static By REPORT_NAME_FR_FIELD = By.cssSelector("input#reportNameFrench");

private static By SAVE_BUTTON = By.xpath("//*[@id=\"editButtons\"]/input[1]");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
*/
public class TestBase {

public static final int MAX_WAIT_IN_SECONDS = 365;
public static final int MAX_WAIT_IN_SECONDS = 410;

public static final int MAX_PAGE_LOAD_IN_SECONDS = 365;
public static final int MAX_PAGE_LOAD_IN_SECONDS = 410;

public static final int MAX_SERVER_STARTUP_IN_MILLISECONDS = 10 * 60 * 1000;

Expand Down

0 comments on commit d38669c

Please sign in to comment.