Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 KB | None | 0 0
  1. @javascript
  2. Scenario: Coach Catalog - page for engagement manager
  3. Given I am logged in as eng_man@email.com
  4. And I have "Coaching Administrator" role
  5. And I have "Engagement Manager" role
  6. And I am the "engagement manager" of one engagement
  7. And engagement has been started
  8. And there are "3" coaches in coach catalog:
  9. | name | surname | enterprise |
  10. | Anton | Zimin | Scout OnDemand |
  11. | Ruslan | Milevski | Scout OnDemand |
  12. | Ivan | Russian | Scout OnDemand |
  13. When I go to the coach catalog page
  14. Then I should see "Coach Catalog"
  15. And I should see "Search"
  16. And I should see "Keep filters selections"
  17. And I should see "Filter By"
  18. And I should see "Client Levels"
  19. And I should see "Industries"
  20. And I should see "Functional Groups"
  21. And I should see "Focus Areas"
  22. And I should see "Budget"
  23. And I should see "Location"
  24. And I should see "All Results"
  25. And I should see "Company Catalog"
  26. And I should see "Global Provider Network"
  27. And I should see "Invite New Coaches"
  28. And I should see "3 Results"
  29. And I should see "Anton Zimin"
  30. And I should see "Ruslan Milevski"
  31. And I should see "Ivan Russian"
  32.  
  33. @javascript
  34. Scenario: Coach Catalog - "Invite new coaches" for engagement manager
  35. Given I am logged in as eng_man@email.com
  36. And I have "Coaching Administrator" role
  37. And I have "Engagement Manager" role
  38. And I am the "engagement manager" of one engagement
  39. And engagement has been started
  40. And there are "3" coaches in coach catalog:
  41. | name | surname | enterprise |
  42. | Anton | Zimin | Scout OnDemand |
  43. | Ruslan | Milevski | Scout OnDemand |
  44. | Ivan | Russian | Scout OnDemand |
  45. When I go to the coach catalog page
  46. Then I should see "Coach Catalog"
  47. And I should see "Invite New Coaches"
  48.  
  49. @javascript
  50. Scenario: Coach Catalog - send message to coach by engagement manager
  51. Given I am logged in as eng_man@email.com
  52. And I have "Coaching Administrator" role
  53. And I have "Engagement Manager" role
  54. And I am the "engagement manager" of one engagement
  55. And engagement has been started
  56. And there are "3" coaches in coach catalog:
  57. | name | surname | enterprise |
  58. | Anton | Zimin | Scout OnDemand |
  59. | Ruslan | Milevski | Scout OnDemand |
  60. | Ivan | Russian | Scout OnDemand |
  61. When I go to the coach catalog page
  62. Then I should see "Coach Catalog"
  63. And I should see "Anton Zimin"
  64. And I should see "Ruslan Milevski"
  65. And I should see "Ivan Russian"
  66. When I click "Anton Zimin"
  67. Then I should see "Send Message"
  68. And I should see "To:"
  69. And I should see "From:"
  70. And I should see "Subject:"
  71. When I filling fields with values:
  72. | field | value |
  73. | To: | Anton Zimin <anton@email.com> |
  74. | Subject: | Hello |
  75. | Message body | How are you? |
  76. And I press "Send"
  77. Then I should be on the coach catalog page
  78.  
  79. @javascript
  80. Scenario: Coach Catalog - search for engagement manager
  81. Given I am logged in as eng_man@email.com
  82. And I have "Coaching Administrator" role
  83. And I have "Engagement Manager" role
  84. And I am the "engagement manager" of one engagement
  85. And engagement has been started
  86. And there are "3" coaches in coach catalog:
  87. | name | surname | enterprise |
  88. | Anton | Zimin | Scout OnDemand |
  89. | Ruslan | Milevski | Scout OnDemand |
  90. | Ivan | Russian | Scout OnDemand |
  91. When I go to the coach catalog page
  92. Then I should see "Coach Catalog"
  93. And I should see "Anton Zimin"
  94. And I should see "Ruslan Milevski"
  95. And I should see "Ivan Russian"
  96. When I fill in "Search" with "Anton"
  97. And I click "search"
  98. Then I should see "1 Results"
  99. And I should see "Anton Zimin"
  100. And I should not see "Ruslan Milevski"
  101. And I should not see "Ivan Russian"
  102.  
  103. @javascript
  104. Scenario: Coach Catalog - "View_profile" for engagement manager
  105. Given I am logged in as eng_man@email.com
  106. And I have "Coaching Administrator" role
  107. And I have "Engagement Manager" role
  108. And I am the "engagement manager" of one engagement
  109. And engagement has been started
  110. And there are "3" coaches in coach catalog:
  111. | name | surname | enterprise | client levels | industries | functional groups | focus areas |
  112. | Anton | Zimin | Scout OnDemand | Director | Accounting | Organizational Development | Agile Development |
  113. | Ruslan | Milevski | Scout OnDemand | CxO | Manufacturing | Creative Services | Feedback Delivery |
  114. | Ivan | Russian | Scout OnDemand | CxO | Automotive | Business Development | Career Development |
  115. When I go to the coach catalog page
  116. Then I should see "Coach Catalog"
  117. And I should see "Anton Zimin"
  118. And I should see "Ruslan Milevski"
  119. And I should see "Ivan Russian"
  120. When I click "View Profile"
  121. Then I should be on the coach profile page
  122. And I should see "About Me"
  123. And I should see "Professional Experience"
  124. And I should see "Certifications & Education"
  125. And I should see "Client Levels" with "Director"
  126. And I should see "Industries" with "Accounting"
  127. And I should see "Functional Groups" with "Organizational Development"
  128. And I should see "Focus Areas" with "Agile Development"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement