@@ -986,18 +986,18 @@ private void readsetPanelTest() throws IOException
986986 sleep (200 );
987987 waitForElement (Locator .tagContainingText ("span" , "5' Barcode" ).notHidden ());
988988 Assert .assertEquals ("Incorrect value for input file-handling field after barcode toggle" , "compress" , treatmentField .getValue ());
989- Assert .assertEquals ("The test is looking for the wrong column index for 5' barcode" , "barcode5" , readsetGrid .getEval ("columns[2 ].dataIndex" ));
990- Assert .assertEquals ("The test is looking for the wrong column index for 3' barcode" , "barcode3" , readsetGrid .getEval ("columns[3 ].dataIndex" ));
989+ Assert .assertEquals ("The test is looking for the wrong column index for 5' barcode" , "barcode5" , readsetGrid .getEval ("columns[3 ].dataIndex" ));
990+ Assert .assertEquals ("The test is looking for the wrong column index for 3' barcode" , "barcode3" , readsetGrid .getEval ("columns[4 ].dataIndex" ));
991991
992- Assert .assertFalse ("5' barcode column should not be hidden" , (Boolean ) readsetGrid .getEval ("columns[2 ].hidden" ));
993- Assert .assertFalse ("3' barcode column should not be hidden" , (Boolean ) readsetGrid .getEval ("columns[3 ].hidden" ));
992+ Assert .assertFalse ("5' barcode column should not be hidden" , (Boolean ) readsetGrid .getEval ("columns[3 ].hidden" ));
993+ Assert .assertFalse ("3' barcode column should not be hidden" , (Boolean ) readsetGrid .getEval ("columns[4 ].hidden" ));
994994
995995 barcodeField .setChecked (false );
996996 sleep (200 );
997997 waitForElementToDisappear (Locator .tagContainingText ("span" , "5' Barcode" ).notHidden ());
998998 assertEquals ("Incorrect value for input file-handling field after barcode toggle" , "delete" , treatmentField .getValue ());
999- assertTrue ("5' barcode column should be hidden" , (Boolean ) readsetGrid .getEval ("columns[2 ].hidden" ));
1000- assertTrue ("3' barcode column should be hidden" , (Boolean ) readsetGrid .getEval ("columns[3 ].hidden" ));
999+ assertTrue ("5' barcode column should be hidden" , (Boolean ) readsetGrid .getEval ("columns[3 ].hidden" ));
1000+ assertTrue ("3' barcode column should be hidden" , (Boolean ) readsetGrid .getEval ("columns[4 ].hidden" ));
10011001
10021002 waitAndClick (Ext4Helper .Locators .ext4Button ("Import Data" ));
10031003 new Window .WindowFinder (getDriver ()).withTitle ("Error" ).waitFor ();
0 commit comments