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

      def initialize: (untyped bridge) -> void

      def accept: () -> untyped

      def dismiss: () -> untyped

      def send_keys: (untyped keys) -> untyped

      def text: () -> untyped
    end
  end
end