Class: Selenium::WebDriver::BiDi::Credentials

Inherits:
Object
  • Object
show all
Defined in:
rb/lib/selenium/webdriver/bidi/network/credentials.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(username: nil, password: nil) ⇒ Credentials

Returns a new instance of Credentials.



26
27
28
29
# File 'rb/lib/selenium/webdriver/bidi/network/credentials.rb', line 26

def initialize(username: nil, password: nil)
  @username = username
  @password = password
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



24
25
26
# File 'rb/lib/selenium/webdriver/bidi/network/credentials.rb', line 24

def password
  @password
end

#usernameObject

Returns the value of attribute username.



24
25
26
# File 'rb/lib/selenium/webdriver/bidi/network/credentials.rb', line 24

def username
  @username
end

Instance Method Details

#as_jsonObject



31
32
33
34
35
36
37
38
39
# File 'rb/lib/selenium/webdriver/bidi/network/credentials.rb', line 31

def as_json
  return nil unless username && password

  {
    type: 'password',
    username: username,
    password: password
  }
end