Class: E2E::Driver
- Inherits:
-
Object
- Object
- E2E::Driver
- Defined in:
- lib/e2e/driver.rb
Direct Known Subclasses
Instance Method Summary collapse
- #all(selector, **options) ⇒ Object
- #attach_file(selector, path) ⇒ Object
- #body ⇒ Object
- #check(selector) ⇒ Object
- #click(selector) ⇒ Object
- #click_button(value, **options) ⇒ Object
- #click_link(value, **options) ⇒ Object
- #current_url ⇒ Object
- #evaluate(script) ⇒ Object
- #fill_in(selector, with:) ⇒ Object
- #find(selector, **options) ⇒ Object
- #native ⇒ Object
- #pause ⇒ Object
- #quit ⇒ Object
- #reset! ⇒ Object
- #save_screenshot(path, **options) ⇒ Object
- #uncheck(selector) ⇒ Object
- #visit(url) ⇒ Object
Instance Method Details
#all(selector, **options) ⇒ Object
17 18 19 |
# File 'lib/e2e/driver.rb', line 17 def all(selector, **) raise NotImplementedError end |
#attach_file(selector, path) ⇒ Object
45 46 47 |
# File 'lib/e2e/driver.rb', line 45 def attach_file(selector, path) raise NotImplementedError end |
#body ⇒ Object
49 50 51 |
# File 'lib/e2e/driver.rb', line 49 def body raise NotImplementedError end |
#check(selector) ⇒ Object
37 38 39 |
# File 'lib/e2e/driver.rb', line 37 def check(selector) raise NotImplementedError end |
#click(selector) ⇒ Object
21 22 23 |
# File 'lib/e2e/driver.rb', line 21 def click(selector) raise NotImplementedError end |
#click_button(value, **options) ⇒ Object
25 26 27 |
# File 'lib/e2e/driver.rb', line 25 def (value, **) raise NotImplementedError end |
#click_link(value, **options) ⇒ Object
29 30 31 |
# File 'lib/e2e/driver.rb', line 29 def click_link(value, **) raise NotImplementedError end |
#current_url ⇒ Object
9 10 11 |
# File 'lib/e2e/driver.rb', line 9 def current_url raise NotImplementedError end |
#evaluate(script) ⇒ Object
53 54 55 |
# File 'lib/e2e/driver.rb', line 53 def evaluate(script) raise NotImplementedError end |
#fill_in(selector, with:) ⇒ Object
33 34 35 |
# File 'lib/e2e/driver.rb', line 33 def fill_in(selector, with:) raise NotImplementedError end |
#find(selector, **options) ⇒ Object
13 14 15 |
# File 'lib/e2e/driver.rb', line 13 def find(selector, **) raise NotImplementedError end |
#native ⇒ Object
61 62 63 |
# File 'lib/e2e/driver.rb', line 61 def native raise NotImplementedError end |
#pause ⇒ Object
65 66 67 |
# File 'lib/e2e/driver.rb', line 65 def pause raise NotImplementedError end |
#quit ⇒ Object
73 74 75 |
# File 'lib/e2e/driver.rb', line 73 def quit raise NotImplementedError end |
#reset! ⇒ Object
69 70 71 |
# File 'lib/e2e/driver.rb', line 69 def reset! raise NotImplementedError end |
#save_screenshot(path, **options) ⇒ Object
57 58 59 |
# File 'lib/e2e/driver.rb', line 57 def save_screenshot(path, **) raise NotImplementedError end |
#uncheck(selector) ⇒ Object
41 42 43 |
# File 'lib/e2e/driver.rb', line 41 def uncheck(selector) raise NotImplementedError end |
#visit(url) ⇒ Object
5 6 7 |
# File 'lib/e2e/driver.rb', line 5 def visit(url) raise NotImplementedError end |