Smile Bank to Ledger

Check-in [35fcf527ec]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fixes as a result of merge
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 35fcf527ecfe08ebb932f377d1272f2fd7b5c546
User & Date: atomicules 2015-07-10 22:40:38
Context
2015-07-21
08:51
Use highline for secure data entry check-in: 04f262a3df user: atomicules tags: trunk
2015-07-10
22:40
Fixes as a result of merge check-in: 35fcf527ec user: atomicules tags: trunk
11:12
Remove redundant comments after merge check-in: 16a050f0ef user: atomicules tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to smile.rb.

78
79
80
81
82
83
84


85
86
87
88
89
90
91
92
93
94
95


	def recent_transactions
		#requires
		page = logon_bulletin
		page = @a.click(page.link_with(:text => "current account"))
		get_transactions(page)


		#Need to return this
		page
		doc = Nokogiri::HTML(@page.body)
		@balance = doc.xpath("//td[@class='recentTransactionsAccountData']/table/tr[2]/td[2]").text
	end


	def previous_statements
		#requires
		page = recent_transactions
		#Previous statements







>
>


<
<







78
79
80
81
82
83
84
85
86
87
88


89
90
91
92
93
94
95


	def recent_transactions
		#requires
		page = logon_bulletin
		page = @a.click(page.link_with(:text => "current account"))
		get_transactions(page)
		doc = Nokogiri::HTML(page.body)
		@balance = doc.xpath("//td[@class='recentTransactionsAccountData']/table/tr[2]/td[2]").text
		#Need to return this
		page


	end


	def previous_statements
		#requires
		page = recent_transactions
		#Previous statements