I use some code for verification reasons. The result of this code must be passed to a class called Report. Here I use one of the methods of the class Report - addtoReport.
class Text_pos
def initialize(text1, object1)
@text1=text1
if $ie.contains_text(@text1)
puts("Test for " + @object1 + " passed")
@r.addtoReport(@testReport, "check " + @object1, "PASSED")
end
end
end
When I run my test I get the error -
in `initialize': undefined method `addtoReport' for nil:NilClass (NoMethodError)
On the begining of test I initialize report file
require 'watir-classic\CLReport.rb'
@r = CLReport.new()
@testReport = @r.createReport('E:\Reports_watir\Company')
How can I use the method addtoReport in class Text_pos?
@r = CLReport.newon your initialize. – Vincent Paca Jul 10 '12 at 10:57