Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. package UI.AppTests.Tags;
  2. import org.openqa.selenium.WebElement;
  3.  
  4. import AutomationKit.AutomationClass.BasicUiScreen;
  5. import io.appium.java_client.pagefactory.AndroidFindBy;
  6. import io.appium.java_client.pagefactory.iOSFindBy;
  7.  
  8. public class MyRidesTags extends BasicUiScreen {
  9.  
  10. @iOSFindBy(id = "x")
  11. @AndroidFindBy(id = "y")
  12. public WebElement menuButton;
  13.  
  14. @iOSFindBy(id = "x")
  15. @AndroidFindBy(id = "y")
  16. public WebElement myridesButton;
  17.  
  18. @iOSFindBy(id = "x")
  19. @AndroidFindBy(id = "y")
  20. public WebElement bookedbutton;
  21.  
  22. @iOSFindBy(id = "x")
  23. @AndroidFindBy(id = "y")
  24. public WebElement selectbutton;
  25.  
  26. @iOSFindBy(id = "x")
  27. @AndroidFindBy(id = "y")
  28. public WebElement editbutton;
  29.  
  30. @iOSFindBy(id = "x")
  31. @AndroidFindBy(id = "y")
  32. public WebElement cancelbutton;
  33.  
  34. @iOSFindBy(id = "x")
  35. @AndroidFindBy(id = "y")
  36. public WebElement exitbutton;
  37.  
  38. @iOSFindBy(id = "x")
  39. @AndroidFindBy(id = "y")
  40. public WebElement pastbutton;
  41.  
  42. @iOSFindBy(id = "x")
  43. @AndroidFindBy(id = "y")
  44. public WebElement filterbutton;
  45.  
  46. @iOSFindBy(id = "x")
  47. @AndroidFindBy(id = "y")
  48. public WebElement frombutton;
  49.  
  50. @iOSFindBy(id = "x")
  51. @AndroidFindBy(id = "y")
  52. public WebElement datebutton;
  53.  
  54. @iOSFindBy(id = "x")
  55. @AndroidFindBy(id = "y")
  56. public WebElement confirmbutton;
  57.  
  58. @iOSFindBy(id = "x")
  59. @AndroidFindBy(id = "y")
  60. public WebElement tobutton;
  61.  
  62. @iOSFindBy(id = "x")
  63. @AndroidFindBy(id = "y")
  64. public WebElement savebutton;
  65.  
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement