How do you Skip Test Case from execution?

Answers were Sorted based on User's Feedback



How do you Skip Test Case from execution?..

Answer / naazneen

There are two ways to skip a test case :

1. By using testNg annotation , enabled=false

Eg: @Test(enabled=false)
Public void testCase(){
// code
}

2. By using "Skip Exception"

Eg: @Test
public void testCase1(){
throw Skip Exception(" skipping the test ");
}

Is This Answer Correct ?    12 Yes 0 No

How do you Skip Test Case from execution?..

Answer / 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

How do you Skip Test Case from execution?..

Answer / shahid qureshi

by @Ignore annotations

Is This Answer Correct ?    0 Yes 1 No

How do you Skip Test Case from execution?..

Answer / anagha

In testNg there is annotation
enabled =true

so it can be like this

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

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More Selenium Interview Questions

What is testng?

0 Answers  


How to handle keyboard and mouse actions using selenium?

0 Answers  


What are the different components of the selenium?

0 Answers  


Explain what are the different types of locators in selenium?

0 Answers  


How to use frame elements in Selenium on a page?

0 Answers  






Tell me how to verify tooltip text using selenium?

0 Answers  


How to assert title of the web page?

0 Answers  


what is the difference between keys.enter and keys.return in selenium? i have used both and both performed enter.

1 Answers   JPMorgan Chase, Tech Mahindra,


What are the test types supported by selenium?

0 Answers  


Mention what are the advantages of using git hub for selenium?

0 Answers  


What is the purpose of creating a reference variable- ‘driver’ of type

0 Answers  


What is the difference between selenium and sikuli?

0 Answers  


Categories