-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextra1.java
79 lines (70 loc) · 3.01 KB
/
extra1.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
71
72
73
74
75
76
77
78
79
package selenium.sample.extra;
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.assertEquals;
public class extra1 {
WebDriver driver;
String base_url = "https://kristinek.github.io/site/examples/actions";
String new_url = "https://kristinek.github.io/site/examples/link1";
// 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();
}
// 1. navigateBack (which will check current url,
// click on element with css selector “a[title='Link 1']”,
// check current url, navigate back and check the url again)
@Test
public void navigateBack() throws Exception {
assertEquals(base_url, driver.getCurrentUrl());
driver.findElement(By.cssSelector("a[title='Link 1']")).click();
assertEquals(new_url, driver.getCurrentUrl());
driver.navigate().back();
assertEquals(base_url, driver.getCurrentUrl());
}
//2. navigateForward (which will check current url,
// click on element with css selector “a[title='Link 1']”,
// check current url, navigate back, check the url,
// navigate forward and doa final check of url)
@Test
public void navigateForward() throws Exception {
assertEquals(base_url, driver.getCurrentUrl());
driver.findElement(By.cssSelector("a[title='Link 1']")).click();
assertEquals(new_url, driver.getCurrentUrl());
driver.navigate().back();
assertEquals(base_url, driver.getCurrentUrl());
driver.navigate().forward();
assertEquals(new_url, driver.getCurrentUrl());
}
//3. refresh (which will check the url,
// get value of text box, send some keys to the text box,
// check that the text box value was changed, do a refresh,
// check the url and that the text box is now again with default value)
@Test
public void refresh() throws Exception {
String originalText = "This is a text box";
WebElement getTextBox = driver.findElement(By.name("vfb-5"));
assertEquals(base_url, driver.getCurrentUrl());
assertEquals(getTextBox.getAttribute("value"), originalText);
getTextBox.sendKeys(" asd");
assertEquals(getTextBox.getAttribute("value"), originalText + " asd");
driver.navigate().refresh();
assertEquals(driver.findElement(By.name("vfb-5")).getAttribute("value"), originalText);
}
}