Method: String#is_integer

Defined in:
lib/page-object/core_ext/string.rb

#is_integerObject



2
3
4
# File 'lib/page-object/core_ext/string.rb', line 2

def is_integer
  true if Integer(self) rescue false
end