2016-06-02 3 views

ответ

1

Привет TestNG может быть определена как

1. TestNG is a testing framework designed to simplify a broad range of testing needs, from unit testing (testing a class in isolation of the others) to integration testing (testing entire systems made of several classes, several packages and even several external frameworks, such as application servers).

2.Для официальный TestNG документация Please Click Here

Перед тем, как можно использовать TestNG с селеном, вы должны установить его в first.Talking что вы работаете с eclipse (любая версия)

1. There are various ways to install TestNG either followthis или thisor simply go to Help/Eclipse MarketPlace. under Find type Test NG and click on the install

теперь, как использовать тест NG в упадке с селеном

@BeforeTest 
    public void TearUP(){ 
     // preconditions for sample test 
     // like browser start with specific URL 
    } 


@Test 
    public void SampleTest(){ 
     // code for the main test case goes inside 
    } 

@AfterTest 
public void TearDown1(){ 
    // thing to done after test is run 
    // like memory realese 
    // browser close 

} 

Некоторой информацией для выше коды

  1. TestNG имеют различные аннотаций для получения дополнительной информации о аннотации перейти к вышесказанному link

    @BeforeSuite: аннотированный метод будет запущен до того, как все тесты в этом пакете будут запущены.

    @AfterSuite: The annotated method will be run after all tests in this suite have run. 
    @BeforeTest: The annotated method will be run before any test method belonging to the classes inside the <test> tag is run. 
    @AfterTest: The annotated method will be run after all the test methods belonging to the classes inside the <test> tag have run. 
    @BeforeGroups: The list of groups that this configuration method will run before. This method is guaranteed to run shortly before the first test method that belongs to any of these groups is invoked. 
    @AfterGroups: The list of groups that this configuration method will run after. This method is guaranteed to run shortly after the last test method that belongs to any of these groups is invoked. 
    @BeforeClass: The annotated method will be run before the first test method in the current class is invoked. 
    @AfterClass: The annotated method will be run after all the test methods in the current class have been run. 
    @BeforeMethod: The annotated method will be run before each test method. 
    @AfterMethod: The annotated method will be run after each test method. 
    
1

Одним из основных видов использования селена является проверка функциональности ui, а в качестве тестового фреймворка testNg имеет множество методов для запуска и отправки тестов и может использоваться для тестирования ui с помощью селена. Одним из эффективных инструментов является использование selion (https://github.com/paypal/selion).

Смежные вопросы