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