-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSample4Task.java
70 lines (63 loc) · 2.81 KB
/
Sample4Task.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
60
61
62
63
64
65
66
67
68
69
70
package selenium.sample;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import static org.junit.Assert.*;
public class Sample4Task {
WebDriver driver;
String base_url = "https://kristinek.github.io/site/examples/actions";
// method which is being run before each test
@Before
public void startingTests() throws Exception {
// from Sample 1:
String libWithDriversLocation = System.getProperty("user.dir") + "\\lib\\";
System.setProperty("webdriver.chrome.driver", libWithDriversLocation + "chromedriver.exe");
// declaration above:
driver = new ChromeDriver();
//open page:
driver.get(base_url);
}
// method which is being run after each test
@After
public void endingTests() throws Exception {
driver.quit();
}
@Test
public void enterNumber() throws Exception {
// enter a number under "Number"
driver.findElement(By.id("number")).sendKeys("123");
// check that button is not clickable "Clear Result"
assertFalse(driver.findElement(By.id("clear_result_button_number")).isEnabled());
// check that text is not displayed
assertFalse(driver.findElement(By.id("result_number")).isDisplayed());
// click on "Result" button
driver.findElement(By.id("result_button_number")).click();
// check that text is displayed
assertTrue(driver.findElement(By.id("result_number")).isDisplayed());
// check that the correct Text appears ("You entered number: "NUMBER YOU ENTERED"")
assertEquals("You entered number: \"1235\"", driver.findElement(By.id("result_number")).getText());
// check that the button "Clear Result" is clickable now
assertTrue(driver.findElement(By.id("clear_result_button_number")).isEnabled());
// click on "Clear Result"
driver.findElement(By.id("clear_result_button_number")).click();
// check that the text is still (""), but it is not displayed
assertEquals("", driver.findElement(By.id("result_number")).getText());
assertFalse(driver.findElement(By.id("result_number")).isDisplayed());
}
@Test
public void clickOnLink() throws Exception {
// TODO:
// check current url is base_url
assertEquals(base_url, driver.getCurrentUrl());
// click on "This is a link to Homepage"
driver.findElement(By.id("homepage_link")).click();
// check that current url is not base_url
assertFalse(base_url.equals(driver.getCurrentUrl()));
// verify that current url is homepage
assertTrue(driver.getCurrentUrl().equals("https://kristinek.github.io/site/"));
}
}