Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Commit

Permalink
输出成功提交
Browse files Browse the repository at this point in the history
  • Loading branch information
catlair committed May 4, 2021
1 parent b999c4e commit a4fa83e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/juryTask/judgement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,12 @@ class Judgement {
}

async submitHandle() {
await this.page.click('.content-outer .footer button');
logger.info('成功提交');
try {
await this.page.click('.content-outer .footer button');
logger.debug('成功提交');
} catch (error) {
logger.info(error.message);
}
}

async closeSummary() {
Expand Down

0 comments on commit a4fa83e

Please sign in to comment.