File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
java/client/test/org/openqa/selenium/interactions/touch Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1818
1919import org .junit .runner .RunWith ;
2020import org .junit .runners .Suite ;
21+ import org .junit .AfterClass ;
2122import org .openqa .selenium .interactions .touch .TouchDoubleTapTest ;
2223import org .openqa .selenium .interactions .touch .TouchFlickTest ;
2324import org .openqa .selenium .interactions .touch .TouchLongPressTest ;
2425import org .openqa .selenium .interactions .touch .TouchScrollTest ;
2526import org .openqa .selenium .interactions .touch .TouchSingleTapTest ;
27+ import org .openqa .selenium .testing .JUnit4TestBase ;
2628
2729@ RunWith (Suite .class )
2830@ Suite .SuiteClasses ({
3335 TouchSingleTapTest .class
3436})
3537public class TouchTests {
38+ @ AfterClass
39+ public static void cleanUpDriver () {
40+ JUnit4TestBase .removeDriver ();
41+ }
3642}
43+
You can’t perform that action at this time.
0 commit comments