-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTask1.java
59 lines (48 loc) · 1.82 KB
/
Task1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package selenium.tasks;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class Task1 {
WebDriver driver;
@Before
public void openPage() {
String libWithDriversLocation = System.getProperty("user.dir") + "\\lib\\";
System.setProperty("webdriver.chrome.driver", libWithDriversLocation + "chromedriver.exe");
driver = new ChromeDriver();
driver.get("https://kristinek.github.io/site/tasks/enter_a_number");
}
@After
public void closeBrowser() {
driver.quit();
}
@Test
public void errorOnText() {
// TODO
// enter a text instead of a number, check that correct error is seen
}
@Test
public void errorOnNumberTooSmall() {
// TODO
// enter number which is too small (below 50), check that correct error is seen
}
@Test
public void errorOnNumberTooBig() {
// BUG: if I enter number 666 no errors where seen
// TODO
// enter number which is too big (above 100), check that correct error is seen
}
@Test
public void correctSquareRootWithoutRemainder() {
// TODO
// enter a number between 50 and 100 digit in the input (square root of which doesn't have a remainder, e.g. 2 is square root of 4),
// then and press submit and check that correct no error is seen and check that square root is calculated correctly
}
@Test
public void correctSquareRootWithRemainder() {
// TODO
// enter a number between 50 and 100 digit in the input (square root of which doesn't have a remainder, e.g. 1.732.. is square root of 3) and press submit,
// then check that correct no error is seen and check that square root is calculated correctly
}
}