Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do you Skip Test Case from execution?

Answer Posted / elakkiya

In Testng, we can skip method like below,

@test(enabled=false)
public void test()
{
// body
}


In JUnit, we can skip method and as well Class like below,

Class:
--------
@Ignore
public class IgnoreMe {
@Test public void test1() { ... }
@Test public void test2() { ... }
}

Method:
-----------
@Ignore
@Test
public void something() { ...

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of waits available in webdriver?

945


Explain Cucumeber Framework?

964


What is the command to connect a node to the selenium grid?

961


What is the selenium ide and what is it used for?

1135


Disadvantages of Hybrid Framework?

2870


How you can handle colors in web driver?

1000


Mention different exceptions you had in selenium web driver?

876


What kinds of tests can Selenium support?

997


What are the prerequisites to run selenium webdriver?

982


Tell us what selenium components do you know?

1018


Tell me what are the advantages of using git hub for selenium?

875


Tell me can we use selenium rc for tests driving on two different browsers on one operating system without selenium grid?

887


How can I learn to automate testing using selenium?

948


Write the code to right click an element in selenium?

885


How can we handle pop-ups in rc?

1039