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 'rubygems'
require 'watir-webdriver'
require 'page-object'
require_relative '../base/base'

class Home < Base
include PageObject

def initialize(driver)
super(driver)
end

expected_title "VA Tool Set"
h3(:home_welcome_message, :id => 'home-welcome-user')
h3(:sectionLabel, :css => '.section-header')

#primary title
h2(:primary_header, :css => '.primary-header>h2')
div(:unauthorized_welcome_message, :css=> '.welcome')

#VAR Utility
img(:varUtilImg, :css => '#var-utility-plaque img')
h4(:varUtilTitle, :css => '#var-utility-plaque h4')
p(:varUtilText1, :css => '#var-utility-plaque p:first-of-type')
p(:varUtilText2, :css => '#var-utility-plaque p:nth-of-type(2)')
button(:varUtilOpen, :css => '#open-var-utility-btn')
end