get form name
parent
e34f2e609d
commit
376ae24eee
|
@ -6,6 +6,7 @@ class MechanizeCr::Form
|
||||||
getter checkboxes : Array(MechanizeCr::FormContent::CheckBox)
|
getter checkboxes : Array(MechanizeCr::FormContent::CheckBox)
|
||||||
getter enctype : String
|
getter enctype : String
|
||||||
getter method : String
|
getter method : String
|
||||||
|
getter name : String
|
||||||
property action : String
|
property action : String
|
||||||
|
|
||||||
def initialize(node : Node | Myhtml::Node)
|
def initialize(node : Node | Myhtml::Node)
|
||||||
|
@ -15,7 +16,7 @@ class MechanizeCr::Form
|
||||||
@checkboxes = Array(MechanizeCr::FormContent::CheckBox).new
|
@checkboxes = Array(MechanizeCr::FormContent::CheckBox).new
|
||||||
@action = node.fetch("action", "")
|
@action = node.fetch("action", "")
|
||||||
@method = node.fetch("method", "GET").upcase
|
@method = node.fetch("method", "GET").upcase
|
||||||
#@name = node['name']
|
@name = node.fetch("name", "")
|
||||||
#@clicked_buttons = []
|
#@clicked_buttons = []
|
||||||
#@page = page
|
#@page = page
|
||||||
#@mech = mech
|
#@mech = mech
|
||||||
|
|
Loading…
Reference in New Issue