View Javadoc

1   package com.atlassian.webdriver.it.pageobjects.page.jsconsolelogging;
2   
3   public class IncludedScriptErrorPage extends LogConsoleOutputPage
4   {
5       @Override
6       public String getUrl()
7       {
8           return pathTo("included-script-errors.html");
9       }
10  
11      public String objectIsNotFunctionScriptUrl()
12      {
13          return "included-script-errors-1.js";
14      }
15  
16      public String throwErrorObjectScriptUrl()
17      {
18          return "included-script-errors-2.js";
19      }
20  }