Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/rb/sig/lib/selenium/webdriver/firefox/profiles_ini.rbs
1865 views
module Selenium
  module WebDriver
    module Firefox
      class ProfilesIni
        @ini_path: untyped

        @profile_paths: untyped

        def initialize: () -> void

        def []: (untyped name) -> untyped

        def refresh: () -> untyped

        private

        def parse: () -> untyped

        def path_for: (untyped name, untyped is_relative, untyped path) -> untyped?
      end
    end
  end
end