-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
johnny
committed
Mar 31, 2023
1 parent
0c53ae8
commit e1e4b7b
Showing
19 changed files
with
790 additions
and
119 deletions.
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
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
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
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
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 |
---|---|---|
|
@@ -59,9 +59,9 @@ public void TestSend_btn() throws InterruptedException { | |
@FindBy(xpath = ("//input[@placeholder='이메일 또는 휴대폰 번호']")) | ||
WebElement TestSend_EmailandPhoneNumber_input; | ||
|
||
public void TestSend_EmailandPhoneNumber_input_m() throws InterruptedException { | ||
public void TestSend_EmailandPhoneNumber_input_m(String arg1) throws InterruptedException { | ||
Wait.until(ExpectedConditions.visibilityOf(TestSend_EmailandPhoneNumber_input)).click(); | ||
Wait.until(ExpectedConditions.visibilityOf(TestSend_EmailandPhoneNumber_input)).sendKeys("[email protected]"); | ||
Wait.until(ExpectedConditions.visibilityOf(TestSend_EmailandPhoneNumber_input)).sendKeys(arg1); | ||
|
||
} | ||
|
||
|
@@ -183,6 +183,28 @@ public void BulkRequest_StatusDone_Check() throws InterruptedException { | |
|
||
/////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
// 2? 4건 이하 보낼 경우에만 완료 모달 나오는 이슈 대응 | ||
public void BulkRequest_Send_1Send_m() throws InterruptedException { | ||
FolderList_btn(); | ||
FolderList_1_Select(); | ||
|
||
// 동적 버튼이라 바로 찾지 말고 상태가 변경 되면 입력 되어야 해서 그냥 시간을 둠 | ||
Thread.sleep(2000); | ||
BulkRequestStatusChange_btn(); | ||
|
||
Checkbox_checkbox_m(); | ||
BulkRequest_StatusChange_confirm_btn(); | ||
|
||
BulkRequest_Start_confirm_btn(); | ||
|
||
Thread.sleep(3000); | ||
|
||
BulkRequest_DoneModal_confirm_btn(); | ||
|
||
} | ||
|
||
|
||
public void BulkRequest_Send_m() throws InterruptedException { | ||
FolderList_btn(); | ||
FolderList_1_Select(); | ||
|
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
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
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
Oops, something went wrong.