How to use oldAction method in wpt

Best JavaScript code snippet using wpt

simpletool.js

Source:simpletool.js Github

copy

Full Screen

1<!--//2 var realPath = window.location.pathname;3 realPath = realPath.split("/");4 //增加5 function add(){6 var oldtarget = document.all.simplepage.target;7 var oldaction = document.all.simplepage.action;8 var owin = window.open("about:blank","ADD","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes");9 document.all.simplepage.target = "ADD";10 document.all.simplepage.action = "goadd.action";11 document.all.simplepage.submit();12 document.all.simplepage.target = oldtarget;13 document.all.simplepage.action = oldaction;14 owin.focus();15 }16 //修改17 function mod(){18 if(!document.all.simplepage.simpleId.value > 0){19 alert("请选择记录");20 return false;;21 }22 var oldtarget = document.all.simplepage.target;23 var oldaction = document.all.simplepage.action;24 var owin = window.open("about:blank","MOD","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes");25 document.all.simplepage.target = "MOD";26 document.all.simplepage.action = "gomod.action";27 document.all.simplepage.submit();28 document.all.simplepage.target = oldtarget;29 document.all.simplepage.action = oldaction;30 owin.focus();31 }32 //删除33 function del(){34 if(!document.all.simplepage.simpleId.value > 0){35 alert("请选择记录");36 return false;;37 }3839 if(!confirm('确定要删除?')){40 return false;41 }42 var oldtarget = document.all.simplepage.target;43 var oldaction = document.all.simplepage.action;44 var owin = window.open("about:blank","ALERT","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width=430,height=184");45 document.all.simplepage.target = "ALERT";46 document.all.simplepage.action = "del.action";47 document.all.simplepage.submit();48 document.all.simplepage.target = oldtarget;49 document.all.simplepage.action = oldaction;50 owin.focus();51 }52 //查看53 function info(){54 if(!document.all.simplepage.simpleId.value > 0){55 alert("请选择记录");56 return false;;57 }58 var oldtarget = document.all.simplepage.target;59 var oldaction = document.all.simplepage.action;60 var owin = window.open("about:blank","INFO","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes");61 document.all.simplepage.target = "INFO";62 document.all.simplepage.action = "info.action";63 document.all.simplepage.submit();64 document.all.simplepage.target = oldtarget;65 document.all.simplepage.action = oldaction;66 owin.focus();67 }68 //打印69 function simpleprint(){70 window.print();71 return false;72 }73 function importsimple(){74 var oldaction = document.all.simplepage.action;75 var owin = window.open("about:blank","IMPORT","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes");76 document.all.simplepage.target = "IMPORT";77 document.all.simplepage.action = "/"+realPath[1]+"/cum/import/goimporttemporary.action";78 document.all.simplepage.submit();79 document.all.simplepage.target = "_self";80 document.all.simplepage.action = oldaction;81 82 owin.focus();83 }84 //导出85 function exportsimple(){86 if(!document.all.simplepage.simpleId.value > 0){87 alert("没有记录");88 return false;;89 }90 var objTr = document.getElementById("title");91 if(null != objTr){92 var titles = "";93 for(var i = 1; i < objTr.cells.length; i++){94 if(i > 1){95 titles += ",";96 }97 var text = objTr.cells[i].innerHTML;98 titles += text;99 }100 document.getElementsByName("tableTitle")[0].value = titles;101 }102 var objTr1 = document.getElementById("simplTitle");103 if(null != objTr1){104 var title = "";105 for(var i = 1; i < objTr1.cells.length; i++){106 if(i > 1){107 title += ",";108 }109 var text1 = objTr1.cells[i].id;110 title += text1;111 }112 document.getElementsByName("propertyName")[0].value = title;113 }114 var oldtarget = document.all.simplepage.target;115 var oldaction = document.all.simplepage.action;116 document.all.simplepage.action = "/"+realPath[1]+"/cum/export/export.action";117 document.all.simplepage.submit();118 document.all.simplepage.target = oldtarget;119 document.all.simplepage.action = oldaction;120 }121 //筛选排序122 function query(){123 var oldtarget = document.all.simplepage.target;124 var oldaction = document.all.simplepage.action;125 var owin = window.open("about:blank","QUERY","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes");126 document.all.simplepage.target = "QUERY";127 if(document.all.simplepage.queryTag != null){128 document.all.simplepage.action = "/"+realPath[1]+"/pub/querysortset.action?queryAction=" + oldaction;129 }else{130 document.all.simplepage.action = "/"+realPath[1]+"/pub/querysortset.action?queryTag=SIMPLE&queryAction=" + oldaction;131 }132 document.all.simplepage.submit();133 document.all.simplepage.target = oldtarget;134 document.all.simplepage.action = oldaction;135 owin.focus();136 } ...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var wpt = require('webpagetest');2var test = new wpt('www.webpagetest.org');3 if(err) {4 console.log(err);5 } else {6 console.log(data);7 }8});

Full Screen

Using AI Code Generation

copy

Full Screen

1var wpt = require('webpagetest');2var options = {3};4wpt = new wpt(options);5}, function(err, data) {6 if (err) {7 console.log(err);8 } else {9 console.log(data);10 }11});12}, function(err, data) {13 if (err) {14 console.log(err);15 } else {16 console.log(data);17 }18});19{ statusCode: 400,20 { 'content-type': 'text/plain',21 server: 'Apache/2.2.15 (CentOS)' } }22{ statusCode: 200,23 { statusCode: 200,24 { statusCode: 200,25 { 'content-type': 'text/plain',26 server: 'Apache/2.2.15 (CentOS)' } },27 { 'content-type': 'application/json',

Full Screen

Using AI Code Generation

copy

Full Screen

1var wptools = require('wptools');2var wiki = new wptools('Albert Einstein');3wiki.oldAction('page', function(err, doc) {4 if (err) {5 console.log(err);6 }7 else {8 console.log(doc);9 }10});11var wptools = require('wptools');12var wiki = new wptools('Albert Einstein');13wiki.newAction('page', function(err, doc) {14 if (err) {15 console.log(err);16 }17 else {18 console.log(doc);19 }20});21var wptools = require('wptools');22var wiki = new wptools('Albert Einstein');23wiki.newAction('page', {prop: 'extracts', exintro: true}, function(err, doc) {24 if (err) {25 console.log(err);26 }27 else {28 console.log(doc);29 }30});31var wptools = require('wptools');32var wiki = new wptools('Albert Einstein');33 if (err) {34 console.log(err);35 }36 else {37 console.log(doc);38 }39});40var wptools = require('wptools');41var wiki = new wptools('Albert Einstein');42 if (err) {43 console.log(err);44 }45 else {46 console.log(doc);47 }48});

Full Screen

Using AI Code Generation

copy

Full Screen

1wpt.oldAction("test");2wpt.oldAction("test");3wpt.oldAction("test");4wpt.oldAction("test");5wpt.oldAction("test");6wpt.oldAction("test");7wpt.oldAction("test");

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run wpt automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful