module SpecTest::Platforms::WatirWebDriver::WebObject

Public Instance Methods

exists?() click to toggle source
# File lib/spectest/platform_watir/web_objects/all.rb, line 10
def exists?
  @web_object.exists?
end
visible?() click to toggle source
# File lib/spectest/platform_watir/web_objects/all.rb, line 6
def visible?
  @web_object.present?
end