# File lib_wpm/wpm.rb, line 1791
    def find(component_name)
      if (self.component_name == component_name) then
        return self
      elsif (@another_page) then
        if (found_component = @another_page.find(component_name)) then
          return found_component
        end
      end

      nil
    end