Dictionary Class
Represents a collection of keys and values. Light dictionary using chaining disigned for small list of items. Complexity: O(n)
Inheritance Hierarchy
SystemObject
  SeleniumDictionary
    SeleniumCapabilities

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As Dictionary

The Dictionary type exposes the following members.

Constructors
Methods
  NameDescription
Public methodAdd
Adds a new value to the dictionary
Public methodClear
Clears the dictionary
Public methodContainsKey
Returns true if the key is present, false otherwise.
Public methodGet
Returns the value associated with the specified key or the default value if the key doesn't exist.
Public methodGetEnumerator
Return the dictionary enumerator
Public methodRemove
Removes the value for the given key.
Public methodSet
Sets the value for the given key. The key is created if missing.
Public methodToExcel
Writes the values in an Excel sheet.
Top
Operators
Properties
  NameDescription
Public propertyCount
Returns the number of items
Public propertyItem
Returns the value for the key
Public propertyItems
Items
Public propertyKeys
Returms an array containing the keys
Public propertyValues
Returms an array containing the values
Top
See Also