description |
---|
A complete example using Maestro + Wikipedia App |
- Go through onboarding
- Navigate dashboard
- Scroll feed & search for item
- Copy text & paste
- Validate visible items
- Authentication
- Signup
- Login
- Use javascript
{% embed url="https://youtu.be/qmEy_0VRHq8" %}
{% hint style="info" %}
Use maestro download-samples
to download the app and code
{% endhint %}
- Launches app in clear state
- Runs onboarding flow
- Add language
- Remove language
- Complete onboarding
# run-test.yml
appId: org.wikipedia
---
- launchApp:
clearState: true
- runFlow: "onboarding/main.yml"
{% tabs %} {% tab title="main.yml" %}
# onboarding/onboarding.yml
appId: org.wikipedia
---
- runFlow: "add-language.yml"
- runFlow: "remove-language.yml"
- tapOn: "Continue"
- assertVisible: "New ways to explore"
- tapOn: "Continue"
- assertVisible: "Reading lists with sync"
- tapOn: "Continue"
- assertVisible: "Send anonymous data"
- tapOn: "Get started"
{% endtab %}
{% tab title="add-language.yml" %}
# onboarding/add-language.yml
appId: org.wikipedia
---
- tapOn: "ADD OR EDIT.*"
- tapOn: "ADD LANGUAGE"
- tapOn:
id: ".*menu_search_language"
- inputText: "Greek"
- assertVisible: "Ελληνικά"
- tapOn: "Ελληνικά"
- tapOn: "Back"
{% endtab %}
{% tab title="remove-language.yml" %}
# onboarding/remove-language.yml
appId: org.wikipedia
---
- tapOn: "ADD OR EDIT.*"
- tapOn: "More options"
- tapOn: "Remove language"
- tapOn:
id: ".*wiki_language_checkbox"
index: 1
- tapOn:
id: ".*menu_delete_selected"
- tapOn: "OK"
- assertNotVisible: "Ελληνικά"
- tapOn: "Back"
{% endtab %} {% endtabs %}
maestro test run-test.yml
{% embed url="https://youtu.be/AR8ISrzhVeA" %}
- Search & Save
- Searches for a wiki page
- Saves the wiki page in favorites
- Returns to main dashboard
- Feed
- Scroll feed until it finds a particular article
- Opens article
- Copy & Paste
- Scrolls feed until it finds a particular article
- Copies article title
- Pastes copied text into another field
- Saved
- Vaidates a particular page has been saved in our favorites
# run-test.yml
appId: org.wikipedia
---
- launchApp
- runFlow: "dashboard/search.yml"
- runFlow: "dashboard/feed.yml"
- runFlow: "dashboard/copy-paste.yml"
- runFlow: "dashboard/saved.yml"
{% tabs %} {% tab title="search.yml" %}
appId: org.wikipedia
---
- tapOn: "Search Wikipedia"
- inputText: "Sun"
- assertVisible: "Star in the Solar System"
- tapOn:
id: ".*page_list_item_title"
- tapOn:
id: ".*page_save"
- back
- back
{% embed url="https://youtu.be/lUVnvTZi1aA" %} {% endtab %}
{% tab title="feed.yml" %}
appId: org.wikipedia
---
- tapOn: "Explore"
- scrollUntilVisible:
element: "Today on Wikipedia.*"
- tapOn: "Today on Wikipedia.*"
- back
{% embed url="https://youtu.be/Sn924uHpsH4" %} {% endtab %}
{% tab title="copy-paste.yml" %}
appId: org.wikipedia
---
- tapOn: "Explore"
- scrollUntilVisible:
element: "Top read"
- copyTextFrom:
id: ".*view_list_card_item_title"
index: 0
- tapOn: "Explore"
- tapOn: "Search Wikipedia"
- inputText: "${maestro.copiedText}"
- back
- back
{% embed url="https://youtu.be/iiv7A1TIFcU" %} {% endtab %}
{% tab title="saved.yml" %}
appId: org.wikipedia
---
- tapOn: "Saved"
- tapOn: "Default list for your saved articles"
- assertVisible: "Sun"
- assertVisible: "Star in the Solar System"
- back
{% embed url="https://youtu.be/V_mVRicKEnU" %} {% endtab %} {% endtabs %}
maestro test run-test.yml
- Signup
- Navigates to signup
- Generates credentials using javascript
- Fills input fields with generated credentials
- Login
- Navigates to login
- Fetches a test user from a test api using javascript
- Fill input fields with fetched credentials
# run-test.yml
appId: org.wikipedia
---
- launchApp
- runFlow: "auth/signup.yml"
- runFlow: "auth/login.yml"
{% tabs %} {% tab title="login.yml" %}
appId: org.wikipedia
---
- tapOn: "More"
- tapOn: "LOG IN.*"
- tapOn:
id: ".*create_account_login_button"
- runScript: "fetchTestUser.js"
- tapOn: "Username"
- inputText: "${output.test_user.username}"
- tapOn: "Password"
- inputText: "test-password"
- tapOn: "LOG IN"
# we won't actually login
- back
- back
{% embed url="https://youtu.be/AUxW_shTg7I" %} {% endtab %}
{% tab title="signup.yml" %}
appId: org.wikipedia
---
- tapOn: "More"
- tapOn: "LOG IN.*"
- runScript: "generateCredentials.js"
- tapOn: "Username"
- inputText: "${output.credentials.username}"
- tapOn: "Password"
- inputText: "${output.credentials.password}"
- tapOn: "Repeat password"
- inputText: "${output.credentials.password}"
- tapOn: "Email.*"
- inputText: "${output.credentials.email}"
# We won't actually create the account
- back
- back
{% embed url="https://youtu.be/bqG-n9sAUVI" %} {% endtab %} {% endtabs %}
{% tabs %} {% tab title="generateCredentials.js" %}
function username() {
const date = new Date().getTime().toString();
return `test_user_${date}`;
}
function email() {
const date = new Date().getTime().toString();
return `test-user-${date}@test.com`;
}
function password() {
const date = new Date().getTime().toString();
return `test-user-password-${date}`;
}
output.credentials = {
email: email(),
password: password(),
username: username(),
};
{% endtab %}
{% tab title="fetchTestUser.js" %}
// Fetches test user from API
function getTestUserFromApi() {
const url = `https://jsonplaceholder.typicode.com/users/1`;
const response = http.get(url);
const data = json(response.body);
return {
username: data.username,
email: data.email,
};
}
output.test_user = getTestUserFromApi();
{% endtab %} {% endtabs %}
maestro test run-test.yml