Removed not needed comments.
This commit is contained in:
parent
8c67bc4876
commit
c5ed8776ce
1 changed files with 14 additions and 18 deletions
|
@ -1776,21 +1776,19 @@ wait untill text in selector disabppears
|
||||||
if params[:custom_data_select]
|
if params[:custom_data_select]
|
||||||
params[:custom_data_select].each {|local_key, local_value|
|
params[:custom_data_select].each {|local_key, local_value|
|
||||||
select(
|
select(
|
||||||
browser: instance,
|
browser: instance,
|
||||||
css: ".active .newTicket select[name=\"#{local_key}\"]",
|
css: ".active .newTicket select[name=\"#{local_key}\"]",
|
||||||
value: local_value,
|
value: local_value,
|
||||||
#mute_log: true,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
if params[:custom_data_input]
|
if params[:custom_data_input]
|
||||||
params[:custom_data_input].each {|local_key, local_value|
|
params[:custom_data_input].each {|local_key, local_value|
|
||||||
set(
|
set(
|
||||||
browser: instance,
|
browser: instance,
|
||||||
css: ".active .newTicket input[name=\"#{local_key}\"]",
|
css: ".active .newTicket input[name=\"#{local_key}\"]",
|
||||||
value: local_value,
|
value: local_value,
|
||||||
clear: true,
|
clear: true,
|
||||||
#mute_log: true,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
@ -2015,21 +2013,19 @@ wait untill text in selector disabppears
|
||||||
if params[:custom_data_select]
|
if params[:custom_data_select]
|
||||||
params[:custom_data_select].each {|local_key, local_value|
|
params[:custom_data_select].each {|local_key, local_value|
|
||||||
select(
|
select(
|
||||||
browser: instance,
|
browser: instance,
|
||||||
css: ".active .sidebar select[name=\"#{local_key}\"]",
|
css: ".active .sidebar select[name=\"#{local_key}\"]",
|
||||||
value: local_value,
|
value: local_value,
|
||||||
#mute_log: true,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
if params[:custom_data_input]
|
if params[:custom_data_input]
|
||||||
params[:custom_data_input].each {|local_key, local_value|
|
params[:custom_data_input].each {|local_key, local_value|
|
||||||
set(
|
set(
|
||||||
browser: instance,
|
browser: instance,
|
||||||
css: ".active .sidebar input[name=\"#{local_key}\"]",
|
css: ".active .sidebar input[name=\"#{local_key}\"]",
|
||||||
value: local_value,
|
value: local_value,
|
||||||
clear: true,
|
clear: true,
|
||||||
#mute_log: true,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue