217. 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.

217.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\community_care landing_page_cc.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\community_care landing_page_cc.rb Wed May 29 22:08:03 2019 UTC

217.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 70
Changed 2 6
Inserted 0 0
Removed 0 0

217.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

217.4 Active regular expressions

No regular expressions were active.

217.5 Comparison detail

  1   require 'r ubygems'
  2   require 'w atir-webdr iver'
  3   require 'p age-object '
  4   require_re lative '.. /base/base '
  5   require_re lative '.. /../helper /table'
  6  
  7   class Land ingCC < Ba se
  8     include  PageObject
  9  
  10     def init ialize(dri ver)
  11       super( driver)
  12     end
  13  
  14     #Landing  Page for  User with  no ICN/DFN
  15     h2(:page _title,:cs s => "#mai n-content  > div > di v > h2:nth -child(1)" )
  16     h2(:page _subtitle, :css => "# main-conte nt > div >  div > h2. error-head er")
  17     div(:pag e_details_ noICN,:css  => "#main -content . vha-enroll ment")
  18     div(:pag e_details_ noDFN,:css  => "#main -content . vha-regist er")
  19     a(:va_be nefits_lin k,:css =>  ".error-he ader + p+p +ol+p .ext ernal-link ")
  20       a(:link_ve t_missionA ct,:css =>  "a[href=' https:// DNS . URL /oei/missi onAct/']")
  21     a(:learn _cc,:css = > "#learn- cc")
  22     div(:lea rn_cc_text ,:css => " body > div .ui-popup- container. ui-popup-a ctive")
  23     button(: learn_cc_o k_btn,:css  => "#lear ncc-ok-btn ")
  24       a(:link_ve t_choice,: css => "a[ href='http s:// DNS . URL /opa/choic eact/']")
  25       a(:facilit y_locator_ link, :css  => "a[hre f='https:/ / DNS . URL /directory /guide/div ision.asp? dnum=1']")
  26  
  27     #Confirm ation Moda l
  28     h3(:moda l_title,:c ss => "#ex ternal-nav  > div.ui- corner-top .ui-header .ui-bar--  > h3")
  29  
  30     #Confirm ation Moda l when cli cking VA C hoice link
  31     p(:modal _info,:css  => "#exte rnal-nav >  div.ui-co ntent > p" )
  32     p(:modal _content,  :css => "# external-n av .ui-con tent>p")
  33     button(: modal_cont inue_btn,  :css => '# external-n av-continu e-btn')
  34     button(: modal_retu rn_btn, :c ss => '#ex ternal-nav -return-bt n')
  35  
  36  
  37  
  38   end