Skip to content
Snippets Groups Projects
Commit 370cb476 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: improve reliability of e2e tests

parent e0a503c8
No related branches found
No related tags found
No related merge requests found
......@@ -885,7 +885,10 @@ class WdIavPage extends WdLayoutPage{
const els = await this._browser.findElements(
By.css('div.loadingIndicator')
)
return els.length === 0
const els2 = await this._browser.findElements(
By.css('.spinnerAnimationCircle')
)
return [...els, ...els2].length === 0
}, 1e3 * 60 * 10)
}
......
......@@ -449,7 +449,7 @@
[attr.id]="ID_MESH_LOADING_STATUS"
role="status">
<div class="spinnerAnimationCircle">
<div [ngClass]="{spinnerAnimationCircle: !!(showPerpsectiveScreen$ | async)}">
</div>
<mat-list>
<mat-list-item>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment