Skip to content

Commit 7711188

Browse files
committed
Remove old indicator selector (fix was backported to 3.3.x)
1 parent b8cbfec commit 7711188

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

atest/05_Features/Completion.robot

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Force Tags feature:completion
1111
*** Variables ***
1212
${COMPLETER_BOX} css:.jp-Completer.jp-HoverBox
1313
${DOCUMENTATION_PANEL} css:.jp-Completer-docpanel
14-
${KERNEL_BUSY_INDCA_OLD} css:.jp-NotebookPanel-toolbar div[title="Kernel Busy"]
1514
${KERNEL_BUSY_INDICATOR} css:.jp-Notebook-ExecutionIndicator[data-status="busy"]
1615

1716

@@ -452,20 +451,12 @@ Should Complete While Kernel Is Busy
452451
# Lab Command Run Selected Cells And Don't Advance
453452
Press Keys None CTRL+ENTER
454453
# Confirm that the kernel is busy
455-
IF '${LAB VERSION}'.startswith('3.4')
456-
Wait Until Page Contains Element ${KERNEL_BUSY_INDICATOR} timeout=5s
457-
ELSE
458-
Wait Until Page Contains Element ${KERNEL_BUSY_INDCA_OLD} timeout=5s
459-
END
454+
Wait Until Page Contains Element ${KERNEL_BUSY_INDICATOR} timeout=5s
460455
# Enter a cell with "t"
461456
Enter Cell Editor 18
462457
# Check if completion worked
463458
Enter Cell Editor 1 line=2
464459
Trigger Completer timeout=10s
465460
Completer Should Suggest test
466461
# Confirm that the kernel indicator was busy all along
467-
IF '${LAB VERSION}'.startswith('3.4')
468-
Page Should Contain Element ${KERNEL_BUSY_INDICATOR}
469-
ELSE
470-
Page Should Contain Element ${KERNEL_BUSY_INDCA_OLD}
471-
END
462+
Page Should Contain Element ${KERNEL_BUSY_INDICATOR}

0 commit comments

Comments
 (0)