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

How can the user get a text from a web element?

939


Mention why do you need session handling while working with selenium?

996


How to select value in a dropdown?

1021


What you know about selenium?

988


What will be the different kinds of locators in selenium?

873


Explain the meaning of assertion in selenium and what are the types of assertion?

945


How to login to any site if it’s showing any authentication popup for

1181


What are driver.close and driver.quit in WebDriver? Which is more preferable?

924


What are the annotations used in testng?

1008


When should I use Selenium IDE?

991


Explain selenium waitfor commands ?

1096


How can you use the recovery scenario in selenium webdriver?

1838


What is the purpose of creating a reference variable- 'driver' of type webdriver instead of directly creating a firefoxdriver object or any other driver's reference in the statement webdriver driver = new firefoxdriver();?

965


What is assertion in selenium?

1003


Explain me how many types of webdriver apis are available in selenium?

898