View Javadoc

1   package edu.samplu.krad.travelview;
2   
3   import edu.samplu.common.KradMenuLegacyITBase;
4   import org.junit.Test;
5   
6   /**
7    * @author Kuali Rice Team (rice.collab@kuali.org)
8    */
9   
10  public class MaintenanceRouteLogLegacyIT extends KradMenuLegacyITBase {
11      @Override
12      protected String getLinkLocator() {
13          return "Travel Account Maintenance (New)";
14      }
15  
16      @Test 
17      /**
18       * Verify the Route Log section exists and contains an IFrame
19       */
20      public void testVerifyRouteLog() throws Exception {
21          gotoMenuLinkLocator();
22          waitAndClickByLinkText("Route Log");
23          waitForElementPresent("//iframe[contains(@src,'RouteLog.do')]");
24          passed();
25      }
26  }