@vntricky right now the order of input fields is alphabetic so it is still possible to rename it in a way that it would be in a desired order ("1Use Proxy","2Proxy String",etc.) , but what is the order of actions ? @Fox In any case would be good to know how to change the order if it is possible?
Run function asynchronously from Node.js
-
// Dummy async function to simulate BAS processing
async function processWithBAS(lead_id,vin, mileage, options,body_type,cylinders,series,transmission,fuel_type,year,make,model,doors,save_app) {
try{
console.log("parms",lead_id,vin, mileage, options,body_type,cylinders,series,transmission); // Should log the vin
var Result = await BAS_FUNCTION(
"Get_Appraisal",
{MILEAGE_PARAM: mileage, OPTIONS_PARAM: options,VIN_PARAM: vin,
Body_Type_PARAM:body_type,Cylinders_PARAM : cylinders,SERIES_PARAM : series,
Transmission:transmission,lead_ID:lead_id, year: year, make : make,model:model,fuel_type:fuel_type,Doors_PARAM:doors,
Save_APP_PARAM: save_app })
console.log(vin,Result);
}catch (error) { // Catch and send any errors that occur during processing console.log(error.message); } return Result}
I want to run this var Result = await BAS_FUNCTION(
asynchronously with a separate browser, how can I do it?
OI tried copy paste it gives weird code with hash