File tree Expand file tree Collapse file tree
src/org/labkey/test/components/ui/grids Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -720,15 +720,8 @@ public QueryGrid resetToDefaultState(boolean revertDefaultView)
720720
721721 public QueryChartPanel showChart (String chartName )
722722 {
723- // if there was a different chart already shown, wait for it to close first
724- // NOTE: this will need to be updated soon with the changes for the "multiple chart rendering" feature
725- WebElement prevChart = hasChartPanel () ? getChartPanel ().getSvgChart () : null ;
726-
727723 elementCache ().chartsMenu .clickSubMenu (false , chartName );
728-
729- if (prevChart != null )
730- getWrapper ().shortWait ().until (ExpectedConditions .stalenessOf (prevChart ));
731- return getChartPanel ();
724+ return getChartPanel (chartName );
732725 }
733726
734727 public QueryChartDialog createChart ()
@@ -772,12 +765,6 @@ public QueryChartPanel getChartPanel(String name)
772765 return new QueryChartPanel .QueryChartPanelFinder (getDriver (), this , name ).waitFor (this );
773766 }
774767
775- public boolean hasChartPanel ()
776- {
777- QueryChartPanel chartPanel = new QueryChartPanel .QueryChartPanelFinder (getDriver (), this ).findOrNull (this );
778- return chartPanel != null ;
779- }
780-
781768 public WebElement showRReport (String reportName )
782769 {
783770 elementCache ().chartsMenu .clickSubMenu (false , reportName );
You can’t perform that action at this time.
0 commit comments