-
Notifications
You must be signed in to change notification settings - Fork 2
[Refactor] Maestro QA Build로 전환 및 auth flow 작성 #1506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
92fc228
refactor: Use QA variant for maestro
kongwoojin 7edf56c
chore: Add contentDescription and semantics for maestro test
kongwoojin e36aa7a
chore: Use .dev package name
kongwoojin b1f022b
add: Add auth maestro test flows
kongwoojin e719dde
fix: Fix maestro not work on small devices
kongwoojin 56de81f
fix: Add missing mkdir
kongwoojin ece09b7
fix: Use semantics node only on qa build
kongwoojin b41b274
add: Create student_smoke flow
kongwoojin af050c3
fix: Fix maestro failure
kongwoojin 1fdfd2e
fix: Fix article keyword test failed
kongwoojin 6fc8e88
chore: Increase timeout to 180m
kongwoojin 8497e5f
fix: Remove keyword delete test
kongwoojin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - runFlow: | ||
| when: | ||
| visible: | ||
| text: "닫기" | ||
| commands: | ||
| - tapOn: | ||
| text: "일주일 동안 그만 보기" | ||
| optional: true | ||
| - tapOn: | ||
| text: "닫기" | ||
| optional: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,13 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - stopApp | ||
| - launchApp: | ||
| permissions: | ||
| notifications: allow | ||
| - waitForAnimationToEnd: | ||
| timeout: 5000 | ||
|
kongwoojin marked this conversation as resolved.
|
||
| - openLink: "koin://main/navigation" | ||
| - waitForAnimationToEnd: | ||
| timeout: 15000 | ||
| - tapOn: | ||
| text: "닫기" | ||
| optional: true | ||
| timeout: 5000 | ||
| - runFlow: dismiss_banner.yaml | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - launchApp: | ||
| clearState: true | ||
| permissions: | ||
| notifications: allow | ||
| - waitForAnimationToEnd: | ||
| timeout: 5000 | ||
| - runFlow: dismiss_banner.yaml | ||
| - openLink: "koin://login/navigation" | ||
| - extendedWaitUntil: | ||
| visible: "로그인" | ||
| timeout: 15000 | ||
| - tapOn: "아이디(Koreatech ID/전화번호)" | ||
|
kongwoojin marked this conversation as resolved.
|
||
| - inputText: "androidqa" | ||
| - hideKeyboard | ||
| - tapOn: "비밀번호" | ||
| - inputText: "${USER_PASSWORD}" | ||
| - hideKeyboard | ||
| - tapOn: "로그인" | ||
| - waitForAnimationToEnd: | ||
| timeout: 5000 | ||
| - runFlow: dismiss_banner.yaml | ||
| - extendedWaitUntil: | ||
| visible: "게시판" | ||
| timeout: 20000 | ||
| - assertVisible: "게시판" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - runFlow: open_drawer.yaml | ||
| - tapOn: | ||
| id: "${APP_ID}:id/navi_item_login_or_logout" | ||
| - extendedWaitUntil: | ||
| visible: "로그인" | ||
| timeout: 10000 | ||
| - assertVisible: "로그인" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,15 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - runFlow: launch_app.yaml | ||
| - extendedWaitUntil: | ||
| visible: | ||
| id: "${APP_ID}:id/button_category" | ||
| timeout: 15000 | ||
| - tapOn: | ||
| id: "${APP_ID}:id/button_category" | ||
| - waitForAnimationToEnd: | ||
| timeout: 5000 | ||
| - extendedWaitUntil: | ||
| visible: | ||
| id: "${APP_ID}:id/navi_item_setting" | ||
| timeout: 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,12 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - runFlow: ../common/open_drawer.yaml | ||
| - tapOn: | ||
| id: "${APP_ID}:id/navi_item_callvan" | ||
| - tapOn: | ||
| text: "알림 켜기" | ||
| optional: true | ||
| - waitForAnimationToEnd: | ||
| timeout: 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| appId: ${APP_ID} | ||
| env: | ||
| APP_ID: in.koreatech.koin.dev | ||
| --- | ||
| - runFlow: ../common/launch_app.yaml | ||
| - openLink: "koin://article/navigation" | ||
| - extendedWaitUntil: | ||
| visible: "공지사항" | ||
| timeout: 15000 | ||
|
|
||
| - tapOn: | ||
| id: "${APP_ID}:id/image_view_to_keyword_add_page" | ||
| - extendedWaitUntil: | ||
| visible: "키워드 관리" | ||
| timeout: 10000 | ||
|
|
||
| - assertNotVisible: "키워드 알림을 받으려면" | ||
| - assertVisible: "키워드 관리" | ||
| - assertVisible: "내 키워드" | ||
| - assertVisible: "추천 키워드" | ||
| - assertVisible: "알림받을 키워드를 입력해 주세요." | ||
|
|
||
| - tapOn: "알림받을 키워드를 입력해 주세요." | ||
| - inputText: "maestroarticle" | ||
| - hideKeyboard | ||
| - tapOn: "추가" | ||
| - extendedWaitUntil: | ||
| visible: "maestroarticle" | ||
| timeout: 5000 | ||
| - assertVisible: "maestroarticle" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.