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 18
18
19
19
import org .junit .runner .RunWith ;
20
20
import org .junit .runners .Suite ;
21
+ import org .junit .AfterClass ;
21
22
import org .openqa .selenium .interactions .touch .TouchDoubleTapTest ;
22
23
import org .openqa .selenium .interactions .touch .TouchFlickTest ;
23
24
import org .openqa .selenium .interactions .touch .TouchLongPressTest ;
24
25
import org .openqa .selenium .interactions .touch .TouchScrollTest ;
25
26
import org .openqa .selenium .interactions .touch .TouchSingleTapTest ;
27
+ import org .openqa .selenium .testing .JUnit4TestBase ;
26
28
27
29
@ RunWith (Suite .class )
28
30
@ Suite .SuiteClasses ({
33
35
TouchSingleTapTest .class
34
36
})
35
37
public class TouchTests {
38
+ @ AfterClass
39
+ public static void cleanUpDriver () {
40
+ JUnit4TestBase .removeDriver ();
41
+ }
36
42
}
43
+
You can’t perform that action at this time.
0 commit comments