Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
require 'watir-webdriver'
require 'page-object'
require_relative '../base/base'
class Launchpad < Base
include PageObject
def initialize(driver)
super(driver)
end
h1(:launchpadTitle, :css => 'h1.ui-title')
expected_title "Launchpad"
a(:login, :id => 'footer-logout-btn')
list_item(:footer_name, :id =>'footer-username')
link(:var_utility, :css=>'a[href="/var-utility/"]')
button(:launchpad_eula_accept, :id=>'accept-btn')
h2(:var_utility_name, :css=>'a[href="/var-utility/"] h2')
span(:var_utility_description, :css=>'a[href="/var-utility/"] span')
#VA Tool Set
h2(:vaToolSet_head, :xpath=> "//h2[contains(.,'VA Tool Set')]")
span(:vaToolSet_desc, :xpath=> "//h2[contains(.,'VA Tool Set')]/following-sibling::span")
end