123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- function xdata(param) {
- var randyi = "";
- for (ii = 0; ii<= 3; ii++ ) {
- randy = Math.floor(Math.random() * (9 - 0));
- randyi = randyi + randy.toString();
- }
- var ktp = "";
- for (i = 0; i<= 12; i++ ) {
- Rand = Math.floor(Math.random() * (9 - 0));
- ktp = ktp + Rand.toString();
- }
- this.getdata = function datacollection() {
- data = [ktp, randyi]
- }
- }
- const dataset = new xdata();
-
- function xdata2(param1) {
- var randy2 = "";
- for (ii = 0; ii<= 3; ii++ ) {
- randy3 = Math.floor(Math.random() * (9 - 0));
- randy2 = randy2 + randy3.toString();
- }
- var npwp = "";
- for (i = 0; i<= 15; i++ ) {
- Rand3 = Math.floor(Math.random() * (9 - 0));
- npwp = npwp + Rand3.toString();
- }
- this.getdata = function datacollection() {
- data2 = [npwp, randy2]
- }
- }
- const dataset1 = new xdata2();
-
- function xdata3(param2) {
- var randy3 = "";
- for (ii = 0; ii<= 3; ii++ ) {
- randy4 = Math.floor(Math.random() * (9 - 0));
- randy3 = randy3 + randy4.toString();
- }
- var sub = "";
- for (i = 0; i<= 9; i++ ) {
- Rand4 = Math.floor(Math.random() * (9 - 0));
- sub = sub + Rand4.toString();
- }
- this.getdata = function datacollection() {
- data3 = [sub, randy4]
- }
- }
- const dataset2 = new xdata3();
- function checkCode() {
- for (i = 0; i <= 10; i++){
- if (Aliases.PTW.dlg.btnOK.Exists) {
- Aliases.PTW.dlg.btnOK.ClickButton();
- let wizardControl2_1 = Aliases.PTW.Wizard2.WizardControl2;
- let panel = wizardControl2_1.panel2;
- panel.panelLeft.panelStepLabels.CondicoLabel3.Click(29, 11);
- Delay(2000)
- condicoPlainTextBox.SetText(generateCode());
- Delay(2000)
- wizardControl2_1.kryptonGroupButtons.tableLayoutPanel2.flowLayoutPanel2.tableLayoutPanel1.btnFinish.ClickButton();
- Delay(15000)
- }else {
- break;
- }
- }
- }
- function generateCode(randyi) {
- var randyi = "";
- for (ii = 0; ii<= 3; ii++ ) {
- randy = Math.floor(Math.random() * (9 - 0));
- randyi = randyi + randy.toString();
- }
- randyi = "T"+randyi;
- return randyi;
- }
- function PATCH_013_GET_FUND_NAME() {
- let fund = Aliases.browser.page1011261948080.textnode.shadowroot.textnode7.shadowroot.textbox.Text;
- let url = "C:\\Users\\vendor_qafusi4\\Documents\\S-INVEST GUI\\S-Invest GUI\\Data Source\\Data Input\\02. Fund Data Management\\patch_012_fund_registration.txt";
-
- var descripsi = 'Testing Fund '+aqConvert.DateTimeToFormatStr(aqDateTime.Today(), "%Y%m%d");
- var today = new Date();
- var closing = new Date();
- var dd = String(today.getDate()).padStart(2, '0');//date today
- var dd2 = String(today.getDate() + 2).padStart(2, '0');// 2 Hari kemudian
- var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0!
- var yyyy = today.getFullYear();
- today = yyyy+'-'+mm+'-'+dd;
- closing = yyyy+'-'+mm+'-'+dd2;
-
- let template =
- 'fundName'+','+'description'+','+'effectiveDate'+','+'closingDate\n'+
- ''+fund+','+descripsi+','+today+','+closing+''
- ;
-
- if (aqFile.Create(url) == 0)
- {
- aqFile.WriteToTextFile(url, template, aqFile.ctUTF8);
- Log.Message("File dibuat dan teks yang ditentukan berhasil ditulis.");
- }
- else
- {
- aqFile.Delete(url);
- if (aqFile.Create(url) == 0)
- {
- aqFile.WriteToTextFile(url, template, aqFile.ctUTF8);
- Log.Message("File dibuat dan teks yang ditentukan berhasil ditulis.");
- }
- }
- }
- function PATCH_013_AMEND_FUND(){
- Rand1 = Math.floor(Math.random() * (9 - 0));
- dataset.getdata();
- dataset1.getdata();
- dataset2.getdata();
- //Clicks the 'textbox' control.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode8.shadowroot.textbox.Click();
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Enters '^a' in the 'textbox' object.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode8.shadowroot.textbox.Keys("^a");
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Sets the text '12345678901234' in the 'textbox' text editor.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode8.shadowroot.textbox.SetText(data2[0]);
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Clicks the 'textbox' control.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode15.shadowroot.textbox.Click();
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Enters '^a' in the 'textbox' object.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode15.shadowroot.textbox.Keys("^a");
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Sets the text '1234567890' in the 'textbox' text editor.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode15.shadowroot.textbox.SetText(data3[0]);
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Clicks the 'textbox2' control.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode17.shadowroot.textbox2.Click();
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Enters '^a' in the 'textbox2' object.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode17.shadowroot.textbox2.Keys("^a");
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Sets the text '12345678901234' in the 'textbox2' text editor.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode17.shadowroot.textbox2.SetText(data[0]);
- //Delays the test execution for the specified time period.
- Delay(3000);
- }
- function PATCH_025(){
- Rand1 = Math.floor(Math.random() * (9 - 0));
- dataset.getdata();
- dataset1.getdata();
- dataset2.getdata();
-
- Delay(3000);
- //Clicks the 'textbox' control.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode30.shadowroot.textnodeTxtfundshortnameafter.shadowroot.textbox.Click();
- //Delays the test execution for the specified time period.
- Delay(3000);
- //Sets the text 'TE2103' in the 'textbox' text editor.
- Aliases.browser.page1011261948080.textnode.shadowroot.textnode30.shadowroot.textnodeTxtfundshortnameafter.shadowroot.textbox.SetText("TE"+data[1]);
- //Delays the test execution for the specified time period.
- Delay(3000);
- }
|