Sha256: 6d406920ad325c05b78e4bc0b0b7554a66f6b1adb3a20444706cfeaa89c281a9
Contents?: true
Size: 1.88 KB
Versions: 4
Compression:
Stored size: 1.88 KB
Contents
module Watir # this class contains items that are common between the span, div, and pre objects # it would not normally be used directly # # many of the methods available to this object are inherited from the Element class # class NonControlElement < Element include Watir::Exception def initialize(container, how, what) set_container container @how = how @what = what super nil end # this method is used to populate the properties in the to_s method def span_div_string_creator n = [] n << "class:".ljust(TO_S_SIZE) + self.class_name n << "text:".ljust(TO_S_SIZE) + self.text return n end private :span_div_string_creator # returns the properties of the object in a string # raises an ObjectNotFound exception if the object cannot be found def to_s assert_exists r = string_creator r += span_div_string_creator return r.join("\n") end end # Accesses Label element on the html page - http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/label.asp?frame=true class Label < NonControlElement # this method is used to populate the properties in the to_s method def label_string_creator n = [] n << "for:".ljust(TO_S_SIZE) + self.for n << "text:".ljust(TO_S_SIZE) + self.text return n end private :label_string_creator # returns the properties of the object in a string # raises an ObjectNotFound exception if the object cannot be found def to_s assert_exists r = string_creator r += label_string_creator return r.join("\n") end end %w[pre p div span map area li ul h1 h2 h3 h4 h5 h6 dl dt dd strong em].each do |elem| module_eval %Q{ class #{elem.capitalize} < NonControlElement; end } end end
Version data entries
4 entries across 4 versions & 1 rubygems