-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOC.js
25 lines (24 loc) · 1.23 KB
/
POC.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
c = $(' #conteudo ')
ct = (c.contentWindow || c.contentDocument)
if (ct.document) ct = ct.document
ct.querySelectorAll('iframe')
frms = ct.querySelectorAll('iframe')
acoes = frms[0]
acoes = acoes.contentWindow || acoes.contentDocument
if (acoes.document) acoes = acoes.document
cont = frms[1]
cont = cont.contentWindow || cont.contentDocument
if (cont.document) cont = cont.document
cont.body.querySelector('#Label19').innerHTML = "Timesheet Hapens ™ </br> Insira ao lado sua </br> planilha de horas </br> ---->>>>>"
cont.body.querySelector('#Label19').style = "background-color:#d0ddd0"
cont.body.querySelector('#txtdsc_atividade').disabled = ""
cont.body.querySelector('#txtdsc_atividade').placeholder = "Insira aqui sua planilha de horas"
cont.body.querySelector('#txtdsc_atividade').style = "background-color:#d0ddd0"
cont.body.querySelector('#txtnum_percentual_concluido').value = "10"
cont.body.querySelector('#ddlCod_fabr_tipoatividade').value = "1"
cont.body.querySelector('#txtHorasTrabalhadas').value = "07:30"
cont.body.querySelector('#txtDataAtividade').value = "27/03/2018"
cont.body.querySelector('#txtdsc_Observacoes').value = "Atividades referentes ao projeto informado"
acoes.body.querySelector('#botGravar').click()
6NYJCK2
14509425746