Class: Kameleon::DSL::Act::Mouse::Click

Inherits:
Object
  • Object
show all
Defined in:
lib/kameleon/dsl/act/mouse.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*params) ⇒ Click

Returns a new instance of Click.



9
10
11
12
13
# File 'lib/kameleon/dsl/act/mouse.rb', line 9

def initialize(*params)
  @params = params
  @actions = []
  parse_actions
end

Instance Attribute Details

#actionsObject (readonly)

Returns the value of attribute actions.



7
8
9
# File 'lib/kameleon/dsl/act/mouse.rb', line 7

def actions
  @actions
end

#paramsObject (readonly)

Returns the value of attribute params.



6
7
8
# File 'lib/kameleon/dsl/act/mouse.rb', line 6

def params
  @params
end