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

219.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 user_menu.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 user_menu.rb Wed May 29 22:12:42 2019 UTC

219.2 Comparison summary

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

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

219.4 Active regular expressions

No regular expressions were active.

219.5 Comparison detail

  1   require 'p age-object '
  2  
  3   class User MenuOption
  4     include  PageObject
  5  
  6     button(: userMenu,  :id => 'us er-menu-bt n')
  7     h3(:titl e, :css =>  '.menu-he ader')
  8     button(: about, :id  => 'about -btn')
  9     button(: help, :id= >'help-btn ')
  10     button(: feedback,  :id => 'fe edback-btn ')
  11     button(: preference s, :id =>  'preferenc es-btn')
  12     link(:la unchpad, : id => 'lau nchpad-btn ')
  13     link(:lo gOut, :id  => 'logout -btn')
  14     div(:use rMenu_pane l, :css =>  '.panel-m enu')
  15  
  16     expected _title "Us er Menu"
  17  
  18     #About p age
  19     h2(:abou tTitle, :c ss => '#ab out-popup  .ui-title' )
  20     h3(:appV ersion, :i d => 'vers ion')
  21     p(:conte ntLine1, : css => '#a bout-popup  .ui-popup  p:nth-of- type(1)')
  22     li(:cont entLine2,  :css => '# about-popu p .ui-popu p ul li:nt h-of-type( 1)')
  23     li(:cont entLine3,  :css => '# about-popu p .ui-popu p ul li:nt h-of-type( 2)')
  24     li(:cont entLine4,  :css => '# about-popu p .ui-popu p ul li:nt h-of-type( 3)')
  25     p(:conte ntLine5, : css => '#a bout-popup  .ui-popup  p:nth-of- type(2)')
  26     button(: ok, :id =>  'about-ok -btn')
  27  
  28     #Prefere nces Menu
  29     h2(:pref Title, :cs s => '#pre ferences-p opup .ui-t itle')
  30     p(:requi red, :css  => '#prefe rences-pop up .ui-pop up p:nth-o f-type(1)' )
  31     div(:con tent, :css  => '#emai l-preferen ces-form . email-pref erences-se ction')
  32     div(:tex t, :css =>  'ui-contr olgroup-la bel')
  33     button(: prefSave,  :id => 'pr eferences- save-btn')
  34     button(: prefCancel , :id => ' preference s-cancel-b tn')
  35     radio_bu tton_group (:emailPre f, :name=> 'modal-ema ilAllowed' )
  36     text_fie ld(:email,  :id => 'm odal-email Address')
  37  
  38     #h3(:err orSummaryH eader, :id  => 'error -list-head ing h3')
  39  
  40     #TODO
  41     #Help Me nu
  42       link(:appS toreLink,  :css=>'a[h ref="https :// DNS . URL /appstore" ]')
  43       link(:faci lityLocato rLink, :cs s=>'a[href ="https:// DNS . URL /find-loca tions/"]')
  44     link(:us erGuideLin k, :css =>  'a[href=" app/module s/user-gui de/Veteran _Appointme nt_Request _UG.pdf"]' )
  45  
  46     #Confirm ation Moda l
  47     h3(:conf irmModalTi tle, :css  => 'h3.ui- title')
  48     div(:con firmText,  :css => '. ui-popup-c ontainer d iv.ui-cont ent')
  49  
  50     #Confirm ation Moda l buttons
  51     button(: return, :i d => 'devi ce-dial-re turn-btn')
  52     button(: continue,  :id => 'de vice-dial- continue-b tn' )
  53  
  54     #Phone N umber link s
  55     link(:he lpDeskTool FreePhoneN umber, :cs s => 'a[hr ef="tel:+1 -800-273-8 255"]')
  56     link(:di al18774705 947, :css  => 'a[href ="tel:+1-8 77-470-594 7"]')
  57     link(:di al711, :cs s => 'a[hr ef="tel:+7 11"]')
  58     link(:di al18009830 937, :css  => 'a[href ="tel:+1-8 00-983-093 7"]')
  59     link(:di al911, :cs s => 'a[hr ef="tel:+9 11"]')
  60     link(:di al1911, :c ss => 'a[h ref="tel:+ 1-911"]')
  61     link(:di alVeteranC risisLink,  :css => ' a[href="te l:+1-800-2 73-8255"]' )
  62  
  63  
  64     def clic kUserMenu
  65       wait_u ntil{ !use rMenu_elem ent.attrib ute('disab led') }
  66       userMe nu_element .when_pres ent(TIME_O UT_LIMIT)
  67       userMe nu
  68     end
  69  
  70     def clic kFeedback
  71       wait_u ntil{ !fee dback_elem ent.attrib ute('disab led') }
  72       feedba ck_element .when_pres ent(TIME_O UT_LIMIT)
  73       feedba ck
  74     end
  75   end