-
Notifications
You must be signed in to change notification settings - Fork 1
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
test: 기타 질문 사항 e2e 테스트 #172
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 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,108 @@ | ||
describe("기타 질문 사항 e2e 테스트", () => { | ||
beforeEach(() => { | ||
cy.viewport(1200, 900); | ||
|
||
cy.goOtherQuestions(); | ||
|
||
cy.get("label") | ||
.contains( | ||
"학업 외에 병행하고 있거나 향후 계획 중에 있는 활동이 있으시다면 서술해 주세요.*" | ||
) | ||
.parent() | ||
.next("input") | ||
.as("plan"); | ||
|
||
cy.get("span") | ||
.contains("지원 경로(중복 선택 가능)*") | ||
.parent() | ||
.next() | ||
.contains("label", "학과 공지사항") | ||
.as("announcement"); | ||
|
||
cy.get("span") | ||
.contains("지원 경로(중복 선택 가능)*") | ||
.parent() | ||
.next() | ||
.contains("label", "인스타그램") | ||
.as("instagram"); | ||
|
||
cy.get("span") | ||
.contains("지원 경로(중복 선택 가능)*") | ||
.parent() | ||
.next() | ||
.contains("label", "기타") | ||
.as("etc"); | ||
|
||
cy.get("span") | ||
.contains("자기소개 및 에코노베이션에 지원하게 된 계기를 서술해 주세요.") | ||
.as("nextPage"); | ||
|
||
cy.get("button").contains("다음").as("nextButton"); | ||
}); | ||
|
||
it("사용자는 향후 계획활동을 기입할 수 있다.", () => { | ||
cy.get("@plan").type("프로젝트").should("have.value", "프로젝트").clear(); | ||
}); | ||
|
||
it("사용자는 지원 경로를 중복으로 선택가능하다.", () => { | ||
cy.get("@announcement").click(); | ||
cy.get("@instagram").click(); | ||
cy.get("@announcement") | ||
.should("have.class", "text-white") | ||
.click() | ||
.should("not.have.class", "text-white"); | ||
cy.get("@instagram") | ||
.should("have.class", "text-white") | ||
.click() | ||
.should("not.have.class", "text-white"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
제가 잘못 확인한 부분이었네요..! 중간 부분에 should부분을 확인을 못했습니다..! |
||
}); | ||
|
||
it("사용자는 지원 경로에서 기타를 선택할 경우 기타 지원 경로에 관한 내용을 입력할 수 있다.", () => { | ||
cy.get("@etc").click(); | ||
cy.get('input[placeholder="내용을 입력해주세요."]') | ||
.type("dev") | ||
.should("have.value", "dev") | ||
.clear(); | ||
cy.get("@etc").should("have.class", "text-white").click(); | ||
}); | ||
|
||
it("사용자는 아무것도 작성 및 선택하지 말고 다음버튼을 누를 시, “필수 질문을 작성해주세요.”라는 alert창이 뜬다.", () => { | ||
cy.checkAlert("필수 질문을 작성해주세요."); | ||
cy.get("@nextButton").click(); | ||
}); | ||
|
||
it("사용자는 향후 계획활동을 기입하지 않고 다음버튼을 누를 시, “필수 질문을 작성해주세요.”라는 alert창이 뜬다. (지원경로 선택 = true)", () => { | ||
cy.checkAlert("필수 질문을 작성해주세요."); | ||
cy.get("@announcement").click(); | ||
cy.get("@nextButton").click(); | ||
}); | ||
|
||
it("사용자는 지원경로를 선택하지 않고 다음버튼을 누를 시, “지원경로를 선택해주세요.”라는 alert창이 뜬다. (향후 계획활동 작성 = true)", () => { | ||
cy.checkAlert("지원 경로를 선택해주세요."); | ||
cy.get("@plan").type("프로젝트").should("have.value", "프로젝트"); | ||
cy.get("@nextButton").click(); | ||
}); | ||
|
||
it("사용자는 지원경로 중 “기타” 만 선택하고 다음버튼을 누를 시, “지원경로를 선택해주세요.”라는 alert창이 뜬다. (향후 계획활동 작성 = true)", () => { | ||
cy.checkAlert("지원 경로를 선택해주세요."); | ||
cy.get("@plan").type("프로젝트").should("have.value", "프로젝트"); | ||
cy.get("@etc").click(); | ||
cy.get("@nextButton").click(); | ||
}); | ||
|
||
it("사용자는 “기타”가 아닌 지원경로 하나 이상과, “기타”를 선택하고 다음버튼을 누를 시, 다음 페이지로 넘어간다. (향후 계획활동 작성 = true, 지원경로 선택 = true )", () => { | ||
cy.get("@plan").type("프로젝트").should("have.value", "프로젝트"); | ||
cy.get("@announcement").click(); | ||
cy.get("@etc").click(); | ||
cy.get("@nextButton").click(); | ||
cy.get("@nextPage").should("have.class", "text-black"); | ||
}); | ||
|
||
it("사용자는 지원경로 중 “기타”만 선택하고 기타에 관한 내용을 기입한 이후, 다음 버튼을 누를 시, 다음페이지로 넘어간다. (향후 계획활동 작성 = true, 지원 경로 선택 = true)", () => { | ||
cy.get("@plan").type("프로젝트").should("have.value", "프로젝트"); | ||
cy.get("@etc").click(); | ||
cy.get('input[placeholder="내용을 입력해주세요."]').type("dev"); | ||
cy.get("@nextButton").click(); | ||
cy.get("@nextPage").should("have.class", "text-black"); | ||
}); | ||
}); |
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
혹시 이동하는 로직을 함수로 뺀 이유가 있을까요?
분명히 가독성이 좋아지는 느낌이 들지만, 올바른 추상화일지에 대해서는 약간 의문이 남는 것 같긴 합니다..! 다른 분들은 어떻게 생각하시나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
beforeEach 문에 페이지를 이동하는 로직을 하는 것보다는 commands 파일에 페이지를 이동하는 함수를 정의해서 사용하는 것이 좋다고 생각합니다.