function testCreateMatch() { startTest("Match Creation"); testCaseStep("Navigate to Match Screen", "Clicking create match button..."); click(BTN_CREATE_MATCH); waitFor(1); stepEnd("PASSED");
So, the mobile script will start with initializing the device, launching the app, perform actions, and then close it. Each step is a test case step, with screenshots perhaps.
function testLoginFlow() { startTest("Login Validation"); testCaseStep("Input Credentials", "Typing username/password..."); typeText(TXT_USERNAME, USERNAME); typeText(PASSWORD, TXT_PASSWORD); click(BTN_LOGIN); stepEnd("PASSED");
Wait, maybe the actual script uses T-Plan's specific syntax. From the example, functions like startTest, testCaseStep, etc. I'll replicate that structure.
Include assertions to check if expected elements are present. For example, after logging in, verify the user's name is displayed. If the element ID is 'user_profile_name', read the text and compare with expected.
function testInvalidLogin() { startTest("Invalid Login"); waitForElement(TXT_USERNAME, 5); // Ensure login screen is active typeText(TXT_USERNAME, "wronguser"); typeText(TXT_PASSWORD, "wrongpass"); click(BTN_LOGIN);
// Element Identifiers string BTN_LOGIN = "id/login_button"; string TXT_USERNAME = "id/username_field"; string TXT_PASSWORD = "id/password_field"; string BTN_CREATE_MATCH = "id/create_match_btn"; string TEXT_WELCOME_MESSAGE = "xpath://*[contains(text(), 'Welcome Back')]"; function setupDevice() { startTest("Setup"); testCaseStep("Launch App", "Opening Blue Lock Rivals..."); launchApp(ANDROID_APP_PACKAGE, APP_ACTIVITY); waitFor(2); // Wait for app stabilizing stepEnd("PASSED"); } Test Case 1: Login Validation ID: TCL-001 Objective: Verify user login with valid credentials.
Variables might include appPackageName for Android, or bundle ID for iOS. Depending on the app, maybe use instruments for iOS or adb for Android.