@winning-test/component 0.0.94 → 0.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winning-test/component",
3
- "version": "0.0.94",
3
+ "version": "0.0.96",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "scripts": {
@@ -187,7 +187,8 @@ class Page extends require("@winning-test/autotest-webui").Page {
187
187
  */
188
188
  async select(menuItem) {
189
189
  super.select(menuItem);
190
- that.loading();
190
+ await that.blockComponent(`//div[@role="tab"][text()='${menuItem}']`).waitUntilBeVisible();
191
+ await that.loading();
191
192
  }
192
193
 
193
194