Class: E2E::Driver

Inherits:
Object
  • Object
show all
Defined in:
lib/e2e/driver.rb

Direct Known Subclasses

E2E::Drivers::Playwright

Instance Method Summary collapse

Instance Method Details

#all(selector, **options) ⇒ Object

Raises:

  • (NotImplementedError)


17
18
19
# File 'lib/e2e/driver.rb', line 17

def all(selector, **options)
  raise NotImplementedError
end

#attach_file(selector, path) ⇒ Object

Raises:

  • (NotImplementedError)


45
46
47
# File 'lib/e2e/driver.rb', line 45

def attach_file(selector, path)
  raise NotImplementedError
end

#bodyObject

Raises:

  • (NotImplementedError)


49
50
51
# File 'lib/e2e/driver.rb', line 49

def body
  raise NotImplementedError
end

#check(selector) ⇒ Object

Raises:

  • (NotImplementedError)


37
38
39
# File 'lib/e2e/driver.rb', line 37

def check(selector)
  raise NotImplementedError
end

#click(selector) ⇒ Object

Raises:

  • (NotImplementedError)


21
22
23
# File 'lib/e2e/driver.rb', line 21

def click(selector)
  raise NotImplementedError
end

#click_button(value, **options) ⇒ Object

Raises:

  • (NotImplementedError)


25
26
27
# File 'lib/e2e/driver.rb', line 25

def click_button(value, **options)
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


29
30
31
# File 'lib/e2e/driver.rb', line 29

def click_link(value, **options)
  raise NotImplementedError
end

#current_urlObject

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/e2e/driver.rb', line 9

def current_url
  raise NotImplementedError
end

#evaluate(script) ⇒ Object

Raises:

  • (NotImplementedError)


53
54
55
# File 'lib/e2e/driver.rb', line 53

def evaluate(script)
  raise NotImplementedError
end

#fill_in(selector, with:) ⇒ Object

Raises:

  • (NotImplementedError)


33
34
35
# File 'lib/e2e/driver.rb', line 33

def fill_in(selector, with:)
  raise NotImplementedError
end

#find(selector, **options) ⇒ Object

Raises:

  • (NotImplementedError)


13
14
15
# File 'lib/e2e/driver.rb', line 13

def find(selector, **options)
  raise NotImplementedError
end

#nativeObject

Raises:

  • (NotImplementedError)


61
62
63
# File 'lib/e2e/driver.rb', line 61

def native
  raise NotImplementedError
end

#pauseObject

Raises:

  • (NotImplementedError)


65
66
67
# File 'lib/e2e/driver.rb', line 65

def pause
  raise NotImplementedError
end

#quitObject

Raises:

  • (NotImplementedError)


73
74
75
# File 'lib/e2e/driver.rb', line 73

def quit
  raise NotImplementedError
end

#reset!Object

Raises:

  • (NotImplementedError)


69
70
71
# File 'lib/e2e/driver.rb', line 69

def reset!
  raise NotImplementedError
end

#save_screenshot(path, **options) ⇒ Object

Raises:

  • (NotImplementedError)


57
58
59
# File 'lib/e2e/driver.rb', line 57

def save_screenshot(path, **options)
  raise NotImplementedError
end

#uncheck(selector) ⇒ Object

Raises:

  • (NotImplementedError)


41
42
43
# File 'lib/e2e/driver.rb', line 41

def uncheck(selector)
  raise NotImplementedError
end

#visit(url) ⇒ Object

Raises:

  • (NotImplementedError)


5
6
7
# File 'lib/e2e/driver.rb', line 5

def visit(url)
  raise NotImplementedError
end