Path: blob/trunk/rb/sig/lib/selenium/webdriver/bidi/network/credentials.rbs
1990 views
module Selenium module WebDriver class BiDi class Credentials @username: String @password: String attr_accessor username: String attr_accessor password: String def initialize: (?username: String?, ?password: String?) -> void def as_json: () -> Hash[Symbol, String]? end end end end