Skip to content

Commit 16ac1ab

Browse files
committed
Classes updated
1 parent 341aebd commit 16ac1ab

File tree

6 files changed

+95
-105
lines changed

6 files changed

+95
-105
lines changed

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 83 additions & 99 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/test/java/com/step2qa/TestChrome.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void setup() {
3131
}
3232

3333
@Test
34-
public void openStep2QA() throws InterruptedException {
34+
public void openStep2QA_chrome() throws InterruptedException {
3535

3636
driver.findElement(By.name("q")).sendKeys("Step2QA");
3737

src/test/java/com/step2qa/TestFirefox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void setup() {
3333
}
3434

3535
@Test
36-
public void openStep2QA() throws InterruptedException {
36+
public void openStep2QA_firefox() throws InterruptedException {
3737

3838
driver.findElement(By.name("q")).sendKeys("Step2QA");
3939

src/test/java/com/step2qa/TestIExplorer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void setup() {
3434
}
3535

3636
@Test
37-
public void openStep2QA() throws InterruptedException {
37+
public void openStep2QA_iExplorer() throws InterruptedException {
3838

3939
driver.findElement(By.name("q")).sendKeys("Step2QA");
4040

testng.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<classes>
66
<class name="com.step2qa.TestChrome">
77
<methods>
8-
<include name="openStep2QA"/>
8+
<include name="openStep2QA_chrome"/>
99
</methods>
1010
</class>
1111
</classes>
@@ -15,7 +15,7 @@
1515
<classes>
1616
<class name="com.step2qa.TestFirefox">
1717
<methods>
18-
<include name="openStep2QA"/>
18+
<include name="openStep2QA_firefox"/>
1919
</methods>
2020
</class>
2121
</classes>
@@ -25,7 +25,7 @@
2525
<classes>
2626
<class name="com.step2qa.TestIExplorer">
2727
<methods>
28-
<include name="openStep2QA"/>
28+
<include name="openStep2QA_iExplorer"/>
2929
</methods>
3030
</class>
3131
</classes>

0 commit comments

Comments
 (0)