Skip to content
Snippets Groups Projects
Commit 7bb6353e authored by anttil's avatar anttil
Browse files

SWE-2 / SP-314 : Added few missing waits

SVN: 26941
parent b4420311
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ public abstract class Browser<T extends Browsable> ...@@ -45,6 +45,7 @@ public abstract class Browser<T extends Browsable>
public final BrowserRow select(T browsable) public final BrowserRow select(T browsable)
{ {
waitForPagingToolBar();
return getGrid().select("Code", browsable.getCode()); return getGrid().select("Code", browsable.getCode());
} }
...@@ -68,12 +69,14 @@ public abstract class Browser<T extends Browsable> ...@@ -68,12 +69,14 @@ public abstract class Browser<T extends Browsable>
{ {
return; return;
} }
waitForPagingToolBar();
getPaging().settings(); getPaging().settings();
getSettings().showColumnsOf(browsable); getSettings().showColumnsOf(browsable);
} }
public final List<BrowserRow> getData() public final List<BrowserRow> getData()
{ {
waitForPagingToolBar();
return getGrid().getData(); return getGrid().getData();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment