Guest User

Untitled

a guest
Aug 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. @RunWith(Cucumber.class)
  2. @CucumberOptions(
  3. features = "src/test/resources/features/",
  4. tags = "@citrus",
  5. glue = "com/cwt/step_def"
  6.  
  7. )
  8. public class CukesRunner {
  9.  
  10. }
  11.  
  12. <dependency>
  13. <groupId>info.cukes</groupId>
  14. <artifactId>cucumber-java</artifactId>
  15. <version>1.2.5</version>
  16. </dependency>
  17.  
  18. <dependency>
  19. <groupId>info.cukes</groupId>
  20. <artifactId>cucumber-junit</artifactId>
  21. <version>1.2.5</version>
  22. </dependency>
  23.  
  24. <dependency>
  25. <groupId>info.cukes</groupId>
  26. <artifactId>cucumber-core</artifactId>
  27. <version>1.2.5</version>
  28. <scope>test</scope>
  29. </dependency>
  30.  
  31. <dependency>
  32. <groupId>org.seleniumhq.selenium</groupId>
  33. <artifactId>selenium-java</artifactId>
  34. <version>3.4.0</version>
  35. <scope>test</scope>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <version>4.12</version>
  42. <scope>test</scope>
  43. </dependency>
  44.  
  45. <dependency>
  46. <groupId>commons-io</groupId>
  47. <artifactId>commons-io</artifactId>
  48. <version>2.6</version>
  49. </dependency>
  50.  
  51. <dependency>
  52. <groupId>io.github.bonigarcia</groupId>
  53. <artifactId>webdrivermanager</artifactId>
  54. <version>2.2.4</version>
  55. </dependency>
Add Comment
Please, Sign In to add comment