Skip to content

Commit

Permalink
Fix tabbing for Selenium tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed Jan 22, 2024
1 parent 5cf4f39 commit bbc86f6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public enum TabIndex {

// system page
TASKMANAGER(0),
INDEXING(2),
MIGRATION(3),
INDEXING(null),
MIGRATION(2),

// user configuration
SETTINGS(0),
Expand All @@ -67,9 +67,9 @@ public enum TabIndex {
IMPORT_CONFIGURATION_MAPPING_FILES(1);


private final int index;
private final Integer index;

TabIndex(final int newIndex) {
TabIndex(final Integer newIndex) {
index = newIndex;
}

Expand Down

0 comments on commit bbc86f6

Please sign in to comment.