TestNG Getting Started Tutorial summary: http://www.cnblogs.com/TankXiao/p/3888070.htmlNational Day 7 days holiday, most of my friends went out to travel, the circle is full of photos of the Sun travel, Southeast Asia tour, European Tour yes, really envy ah. Miserable I only went to the Shanghai Safari Park, rest at home, take advantage of this holiday, to summarize the things I have learned before.I worked
4-run
Testng can be called in multiple ways:
Command Line
Ant
Eclipse
Intellij's idea
This section only describes how to run testng from the command line. If you are interested in other methods, click the above link to view more information.
Assume that testng is already in your class path. The simplest call method is as follows:
java org.testng.TestNG test
Eclipse Version: LunaOnline installation of testng version 6.9This issue occurs because the TestNG version issue or the features plugin is not installed on the online installationThe following are the solutions:Found a lot of classmates and I just as unable to install testng online, now share an offline installation method, and installation files, hoping to help
This article is intended to give readers a simple understanding of testng's automatic operationNext https://www.cnblogs.com/xuezhezlr/p/9213456.html, the article roughly testng in the more specific two XML form, the reader can think, the ant of the XML code, Because it only controls the XML path of packaging and specifying testng, and then obtains the execution result to show the method, and TestNG's XML di
TestNG relies on simple method dependencies for testing, configuring dependent methods through the Dependsonmethods propertyOriginal articles, all rights reserved, permitted reprint, Mark Source: Http://blog.csdn.net/wanghantongJava Code:[Java]View PlainCopy
/**
*
*
* Title:testngdependencies
*
*
*
* Description:testng provides two kinds of dependency implementations
*
* 1. Forced dependency: If there is a failure in a depende
1, testng, multiple execution of use cases@Test (Dataprovider = "Data-provider")Add the parameter source after the @test tag: Dataprovider (Data-provider)How many sets of data are in the Data-provider, @Test how many times the data will be executed2, the configuration and use of Dataprovider @DataProvider (name = "Data-provider") //Iterator iterator protected Iterator Testprovider () { Listnew arraylist(); Dataorigin.add (new ob
After testing with testng, the HTML test report is automatically generated. The TESTNG-XSLT can be used to rewrite the test report.
Test-out/index.html
1. Download Testng-xslt and unzip on the official websiteLink:http://testng-xslt.googlecode.com/files/testng-xslt-1.1.2
4-Run TestNG
TestNG can be invoked in a different way:
* Command line * ant * Eclipse * IntelliJ's IDEA
1) Command line
Let's say you've added testng to class path, calling TestNG the simplest method:
java org.testng.TestNG testng1.xml [testng2.xml testng3.xml ...]
You must specify at least one XML f
3-testng. xml
There are multiple methods to call testng:
UseTestng. xmlFile
Use ant
Use command line
This section describesTestng. xml(You will find relevant documents about Ant and command line below ).
CurrentlyTestng. xmlThe DTD you use can be found on the home page: http://testng.org/testng-1.0.dtd (for more convenience, you can browse the HTML Version )
TestNG uses the Dependsongroups property to test for dependencies,The test method relies on one or some of these methods as a preconditionForced dependency: If an exception is made to a method that is dependent, then the subsequent method will not be executed (default)Sequential dependencies: Subsequent methods are executed regardless of whether the method being relied on is an exception, configured by alwaysrun= "true"[Java]View PlainCopy
/**
*
B_method () {System.out.println ("I-M in Method B");} @Test (priority=6) public void A_method () {System.out.println ("I-M in Method a");} @Test (priority=0) public void E_method () {System.out.println ("I-M in Method E");} @Test (priority=6) public void D_method () {System.out.println ("I-M in Method D");}}Output:I ' m in the method B I ' m in method C I ' m in method E I ' m in method A I ' m ' method D Passed:b_method passed:c_method PASSED: E_method Passed:a_method Passed:d_methodExplanatio
Original URL: https://www.guru99.com/introduction-testng-groups.htmlIntroduction to TestNG GroupsTestNG is a testing framework this covers different types of test designs like unit, functional, end to end, UI and Integr ation test.Can run a single or multiple packages (package here means to encapsulate a group of classes in a proper director forma T) by creating XML and run it through MAVEN.In this
marking methods. This method must return object [].
@ Listeners
Define a listener for a test class.
@ Parameters
This section describes how to pass parameters to the @ test method.
@ Test
Mark a class or method as part of the test.
Benefits of using annotations
The following are some of the benefits of using Annotations:
The testng identification method is concerned with searching for annotations. Therefore,
IDE, Firebug, XPath checker, XPath finderAfter installing Firefox, open Firefox, the front download selenium-ide-2.2.0xpi drag and drop to Firefox, pop up, install.Firebug, XPath checker, XPath Finder, open the Firefox browser, select Tools-Add-ons, open the Add-Ons Manager page, search for Firebug, XPath.Load the query into the Firebug, XPath Checker, and XPath finder, and take effect after restarting the browser:Seleniumide, Firebug and XPath usage, can be Baidu selenium private cuisine (begi
. 4, Selenium client Drivers:selenium-java-2.33.0.zip analog Selenium clients. Here, I will download all the files, all stored under E:\eclipse\selenium , easy to manage:Fourth Step downloadFirefox: http://www.firefox.com.cn/download/Download get file:firefox-latest.exeFifth Step InstallationIDE,Firebug,Xpath Checker,Xpath Finderafter you install Firefox , open Firefoxand drag and drop the selenium-ide-2.2.0xpi downloaded from the previous Firefox, when it pops up, install it. Firebug xpathc
Document directory
Maven 2
In Java 1.4
Maven 1 (by Andrew Glover)
First, I will skip where the idea plug-in is. I will try it later.Directory
Maven2 plugin
Prototype
Maven 1 plug-in
Maven 2
Maven2 itself supports testng without the need to download any additional plug-ins (except testng itself ).Current version
The latest and better surefire plug-in is2.4. You can refer to the surefire we
http://fuxueliang.com/java/2013/06/26/junit-4-vs-testng--comparison/
These two days are reading a book, Java test new technology TestNG and advanced concepts, the author is the founder of TestNG, learned a lot about the knowledge of TestNG, read an article basically put this book several views are embodied, then I dir
This paper mainly describes the basic theoretical knowledge of TestNG, TestNG the specific, writing the test process three steps, and junit4+ differences, so that the pro-TestNG test framework can have a simple cognition.Hope to be able to beginners TestNG test framework of the pro-helpful. If there is any deficiency,
in general Settings, changed to 4725Bootstrap Port in Android Settings, instead of 4726Five, export dependence * Note 4Because it was created with a MAVEN project, the pilot is dependent on the Lib folder under the project pathmvn dependency:copy-dependencies -DoutputDirectory=libVI. implementation of the testFirst run with Maven serially to compile the class filemvn clean testAnd thenjava -classpath ".\target\test-classes" -Djava.ext.dirs=lib org.testng.TestNG -suitethreadpoolsize 2 testng1.xm
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.