Advertisement
Raizekas

Untitled

Apr 8th, 2021
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. package nuorodos;
  2.  
  3. public class SeleniumNuorodos
  4. {
  5. private static final String PIRMO_PUSLAPIO_HOME = "http://automationpractice.com/index.php";
  6. private static final String PIRMO_PUSLAPIO_BASE = "http://automationpractice.com/";
  7.  
  8. private static final String PIRMOS_PREKES_NAME = "Blouse";
  9. private static final String PIRMOS_PREKES_SKU = "demo_2";
  10. private static final String PIRMOS_PREKES_PRICE = "$27.00";
  11.  
  12.  
  13. private static final String ANTROS_PREKES_NAME = "Printed Summer Dress";
  14. private static final String ANTROS_PREKES_SKU = "demo_6";
  15. private static final String ANTROS_PREKES_PRICE = "$30.50";
  16.  
  17. public static String getPirmoPuslapioHome()
  18. {
  19. return PIRMO_PUSLAPIO_HOME;
  20. }
  21.  
  22. public static String getPirmoPuslapioBase()
  23. {
  24. return PIRMO_PUSLAPIO_BASE;
  25. }
  26.  
  27. public static String getPirmosPrekesName()
  28. {
  29. return PIRMOS_PREKES_NAME;
  30. }
  31.  
  32. public static String getPirmosPrekesSku()
  33. {
  34. return PIRMOS_PREKES_SKU;
  35. }
  36.  
  37. public static String getPirmosPrekesPrice()
  38. {
  39. return PIRMOS_PREKES_PRICE;
  40. }
  41.  
  42. public static String getAntrosPrekesName()
  43. {
  44. return ANTROS_PREKES_NAME;
  45. }
  46.  
  47. public static String getAntrosPrekesSku()
  48. {
  49. return ANTROS_PREKES_SKU;
  50. }
  51.  
  52. public static String getAntrosPrekesPrice()
  53. {
  54. return ANTROS_PREKES_PRICE;
  55. }
  56. }
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement