Class: E2E::Session
- Inherits:
-
Object
- Object
- E2E::Session
- Extended by:
- Forwardable
- Defined in:
- lib/e2e/session.rb
Instance Attribute Summary collapse
-
#driver ⇒ Object
readonly
Returns the value of attribute driver.
Instance Method Summary collapse
- #all ⇒ Object
- #find ⇒ Object
-
#initialize(driver_name = E2E.config.driver) ⇒ Session
constructor
A new instance of Session.
- #visit(url) ⇒ Object
Constructor Details
Instance Attribute Details
#driver ⇒ Object (readonly)
Returns the value of attribute driver.
9 10 11 |
# File 'lib/e2e/session.rb', line 9 def driver @driver end |
Instance Method Details
#all ⇒ Object
21 22 23 |
# File 'lib/e2e/session.rb', line 21 def all(...) @driver.all(...) end |
#find ⇒ Object
17 18 19 |
# File 'lib/e2e/session.rb', line 17 def find(...) @driver.find(...) end |