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 => '#header 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="/va-tool-set/"]')
button(:launchpad_eula_accept, :id=>'accept-btn')
h2(:var_utility_name, :css=>'a[href="/va-tool-set/"] h2')
span(:var_utility_description, :css=>'a[href="/va-tool-set/"] span')

#VA Tool Set
h2(:vaToolSet_head, :css => 'a[href="/va-tool-set"]<h2')
span(:vaToolSet_desc, :css => 'a[href="/va-tool-set"]<span')
end