218. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/30/2019 1:49:21 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

218.1 Files compared

# Location File Last Modified
1 var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip\veteran-appointment-requests\test\watir-ruby\pages landing.rb Fri May 10 18:55:49 2019 UTC
2 var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip\veteran-appointment-requests\test\watir-ruby\pages landing.rb Wed May 29 22:08:03 2019 UTC

218.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 152
Changed 1 2
Inserted 0 0
Removed 0 0

218.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

218.4 Active regular expressions

No regular expressions were active.

218.5 Comparison detail

  1   require 'r ubygems'
  2   require 'w atir-webdr iver'
  3   require 'p age-object '
  4   require_re lative 'ba se/base'
  5  
  6   class Land ing < Base
  7     include  PageObject
  8  
  9     @@CC_Ena bled=false ;
  10     def init ialize(dri ver)
  11       super( driver)
  12       @@CC_E nabled
  13     end
  14  
  15     expected _title "VA  Appointme nts"
  16  
  17     button(: login, :id  => 'login -btn')
  18     div(:scr een_conten t, :css=>' .landing-p age div.la nding-page ')
  19     span(:la nding_page _title, :c ss => '#we lcome > sp an:nth-chi ld(2)')
  20     p(:text,  :css => ' div.conten t p:nth-of -type(1)')
  21     ol(:meth ods_allowe d, :css=>' .landing-p age ol')
  22     td(:info Line1, :cs s => '.ui- body table  tbody tr  td:nth-chi ld(1)')
  23     a(:vaafi _ssoe, :cs s => '.con tainer a[a ria-label= \'Veteran  login supp orting DSL ogon, Syma ntec, and  other CSPs .\']')
  24     ordered_ list(:app_ allows_lis t, :css =>  '.landing -page>ol')
  25  
  26     a(:cc_pr esent, :id =>'learn-c c')
  27     #Links o n non-auth enticated  landing pa ge
  28     #span(:d ial911, :c ss => 'a.d evice-dial .ui-link >  span')
  29     link(:di al911, :cs s => 'a[hr ef="tel:+9 11"]')
  30     link(:di alVeteranC risisLink,  :css => ' a[href="te l:+1-800-2 73-8255"]' )
  31  
  32     #Images_ link
  33     link(:di al911Image _link, :id  => 'dial- 911-btn')
  34     link(:di alVeteranC risisImage _link, :id  => 'dial- veteran-cr isis-line- btn')
  35  
  36     #Images
  37     image(:d ial911Imag e, :css=>' img[src="a pp/images/ call-911.p ng"]')
  38     image(:d ialVeteran CrisisImag e, :css=>' img[src="a pp/images/ veterans-c risis-line .png"]')
  39  
  40     #Confirm ation Moda l
  41     h3(:conf irmModalTi tle, :css  => 'h3.ui- title')
  42     div(:con firmText,  :css => '. ui-popup-c ontainer d iv.ui-cont ent')
  43  
  44     #Confirm ation Moda l buttons
  45     button(: return, :i d => 'devi ce-dial-re turn-btn')
  46     button(: continue,  :id => 'de vice-dial- continue-b tn' )
  47  
  48     #VetLink
  49     elements (:vetLink,  :css => " .container  a")
  50  
  51     #Externa l Link for  View VA F acilties
  52       link(:vaFa cilityLink , :css =>  'a[href="h ttps:// DNS . URL /find-loca tions/"]')
  53  
  54     # landin g page for  veterans  who are no t enrolled  in VA Hea lth
  55     h2(:moda lTitle, :c ss => "h2" )
  56     div(:mai nContent,  :id => "ma in-content ")
  57     p(:conte ntLine1, : css => 'di v.ui-conte nt p')
  58     p(:conte ntLine2, : css =>  'd iv.ui-cont ent p:nth- of-type(2) ')
  59     li(:cont entLine3,  :css => 'd iv.ui-cont ent li:nth -of-type(1 )')
  60     li(:cont entLine4,  :css => 'd iv.ui-cont ent li:nth -of-type(2 )')
  61     p(:conte ntLine5, : css => 'di v.ui-conte nt p:nth-o f-type(3)' )
  62     p(:conte ntLine6, : css => 'di v.ui-conte nt p:nth-o f-type(4)' )
  63     p(:conte ntLine7, : css => 'di v.ui-conte nt p:nth-o f-type(5)' )
  64     p(:conte ntLine8, : css => 'di v.ui-conte nt p:nth-o f-type(6)' )
  65  
  66  
  67     link(:va _enrollmen t_link, :c ss => 'a')
  68     link(:va _facility_ locator_li nk, :css = > 'div.ui- content p: nth-of-typ e(6) a')
  69  
  70     def isCC Enabled
  71       if (se lf.cc_pres ent?)
  72         @@CC _Enabled=t rue
  73       end
  74  
  75       return  @@CC_Enab led
  76     end
  77   end