Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/rb/sig/lib/selenium/webdriver/common/wait.rbs
1865 views
module Selenium
  module WebDriver
    class Wait
      @timeout: Numeric

      @interval: Numeric

      @message: String

      @ignored: Array[Exception]

      DEFAULT_TIMEOUT: Integer

      DEFAULT_INTERVAL: Float

      def initialize: (Hash[untyped, untyped] opts) -> void

      def until: () { () -> untyped } -> untyped

      private

      def current_time: () -> untyped
    end
  end
end