* 等待试卷作业加载
()
| 630 | * 等待试卷作业加载 |
| 631 | */ |
| 632 | async function waitForQuestions() { |
| 633 | return waitForElement( |
| 634 | [ |
| 635 | // 一般选择器 |
| 636 | '.subjectList', |
| 637 | // 课堂作业(study/courseteaching/test/homeWork)的特殊选择器 |
| 638 | '.subjectListTest' |
| 639 | ].join(',') |
| 640 | ); |
| 641 | } |
| 642 | |
| 643 | function workOrExam(type: 'work' | 'exam', { answererWrappers, period, thread, answerSeparators }: CommonWorkOptions) { |
| 644 | $message.info({ content: '开始作业' }); |
no test coverage detected