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

      @id: untyped

      ROOT_KEY: String

      include SearchContext

      def initialize: (untyped bridge, untyped id) -> void

      def inspect: () -> untyped

      def ==: (untyped other) -> untyped

      alias eql? ==

      def hash: () -> untyped

      def ref: () -> ::Array[:shadow_root | untyped]

      def to_json: () -> untyped

      def as_json: () -> ::Hash[untyped, untyped]

      private

      attr_reader bridge: untyped
    end
  end
end