There are multiple ways to run test sequentially in Selenium using TestNG
Lets say we have 4 test in a class as shown below. By default test will run in an unpredictable order.
Using Testng.xml we can run test sequentially. By default, TestNG will run your tests in the order they are found in the XML file. If you want the classes and methods listed in this file to be run in an unpredictable order, set the preserve-order attribute to false.
By default preserve-order is true.
- Defining each test in order in XML
- Using 'Priority' attribute
Lets say we have 4 test in a class as shown below. By default test will run in an unpredictable order.
package com.example;
import org.testng.annotations.Test;
public class SequentialTest {
@Test
public void firstTest() {
System.out.println("1");
}
@Test
public void secondTest() {
System.out.println("2");
}
@Test
public void thirdTest() {
System.out.println("3");
}
@Test
public void fouthTest() {
System.out.println("4");
}
}
How can we run test sequentially using TestNG in Selenium
Testng.XML
Using Testng.xml we can run test sequentially. By default, TestNG will run your tests in the order they are found in the XML file. If you want the classes and methods listed in this file to be run in an unpredictable order, set the preserve-order attribute to false.
By default preserve-order is true.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> | |
<suite name="Sequential Test" parallel="none"> | |
<test name="Suite" preserve-order="true"> | |
<classes> | |
<class name="com.example.SequentialTest"> | |
<methods> | |
<include name="firstTest" /> | |
<include name="secondTest" /> | |
<include name="thirdTest" /> | |
<include name="fouthTest" /> | |
</methods> | |
</class> | |
</classes> | |
</test> | |
</suite> |
@Test (priority=" ")
Using 'priority' attribute we can run test sequentially using TestNG in Selenium. We can define priority for each test methods. Lower priorities will be scheduled first.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import org.testng.annotations.Test; | |
public class SequentialTest { | |
@Test(priority = 1) | |
public void firstTest() { | |
System.out.println("1"); | |
} | |
@Test(priority = 2) | |
public void secondTest() { | |
System.out.println("2"); | |
} | |
@Test(priority = 3) | |
public void thirdTest() { | |
System.out.println("3"); | |
} | |
@Test(priority = 4) | |
public void fouthTest() { | |
System.out.println("4"); | |
} | |
} |
No comments:
Post a Comment