Hello @lokiys is there a way to write the log given by zenno instead of read them at the source ?
And do we have a system variable to get the path of the Zenno Install ?
Thanks for helping
Did you tried with my template file ?
Because the real url to use is the following :
https://api-adresse.data.gouv.fr/search/csv/
(and the doc of the api is here https://adresse.data.gouv.fr/api-doc/adresse#csv-search doesn't seem complicated in theory)
What keyword did you use ? I don't know any russian words.
I find thanks Google & ChatGPT some solutions with C#, however i thought the POST action was designed to manage that kind of thing. But i don't succeed. And i tried multipart as file since the begining, without success, so i tried...
If i convert the CURL code in C# i have this :
// In production code, don't destroy the HttpClient through using, but better use IHttpClientFactory factory or at least reuse an existing HttpClient instance
// https://docs.microsoft.com/en-us/aspnet/core/fundamentals/http-requests
//...
Hello,
I would like to do the same API call than with CURL, in Zenno :
curl -X POST -F [email protected] -F https://api-uploadcsv.com/search/csv/
How can i do that with the POST action ?
Thanks
It seems this update fix the issue : https://zennolab.com/discussion/threads/zennoposter-7-7-1-0-chromium-99-o-profile-folder-conversion-o-visual-studio-2022-support.104913/
Hello,
I'm not sure to understand the logic here, it seems to be in an infinite loop.
If the action is Ok, it come back to the action again and again, and if not it goes to timeout.
Hello,
I can connect into zennolab user area, so it's seems my IP is ok.
About other programs, i never have the issue before but it will be complicated to shut everything just to run Project Maker -_-
Hello, i'm using this topic because i have same issue.
I bind a .csv to a table, then i remove the duplicate. Until here it's ok, then i add a table processing block to remove a column and that's the moment where i have the issue.
However, what is weird, is that the column is well removed...
Ok, i understand. Would be a nice feature to have the option to run it 1 time per day without playing with this option. But the most important, i discover thanks to you the Schedule debugger !
Hi,
I have a template that i would like to run every day, one time, at 7 AM.
I did this, but it runs every 2 min.
The template is really simple, without any loop.
So, how can i do this in the right way with zenno scheduler ?
Hello,
I have similar issue with variables in C# code.
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName =@"C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"; // Путь к...
Hello, how do i have to use the variable in this code ?
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName =@"C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"; // Путь к...
Hi,
I would like to automate the upload of .html files to a web service, which process the file uploaded and directly answer with the download of the processing file.
But i have several issues :
- upload file doesn't seems orking well. I specified the path of the file to upload, but it...
Hello,
What is weird is i have no issue to put the symbol in config box, zenno action item, etc. Just on webpage.
And it's on any website, Google for example, or whatever.
I could do a screenvideo but will it helps ?
My keyboard is a french one like this one :
Hi,
I have an issue with the last Zenno version.
When i'm recording on a form, i cannot use "alt gr" symbol option. It doesn't work.
So, no @ or | or { etc.
Windows 10 Pro updated
Hi guys,
I would like to block some urls or ressources of a webpage, and then have the possibility to reactivate them.
How can i do that with Zenno ?
Thanks
I found this here
https://zennolab.com/discussion/threads/getting-the-image-size.18667/#post-119898
https://zennolab.com/discussion/threads/kak-poluchit-razmery-foto.49056/
https://zennolab.com/discussion/threads/vozmozhno-li-poluchit-metadannye-exif-izobrazhenija.80954/...
Hi guys,
I'm searching a way to scrap only High Resolution or Good Quality photos/images with zennoposter.
- weight ? how can i have this info ?
- dimension ? how can i get the height and weight that i see in element properties ?
- use a third party like an api to check the quality ? i don't...
Hi,
@mta yes, that's i used until now but when you have 50 variables to reset it's not optimal.
Thanks @LightWood i will try it and your other solution too :
project.Variables["NameHere1"].Value = "";
project.Variables["NameHere2"].Value = "";
project.Variables["NameHere3"].Value = "";
Hi,
I would like to clean my own variables at the begining of the template, and do that each time to have a clean fresh start.
I know how to do it with variable processing snippet, but when you have dozen of variables it's not optimized.
So, does it exist a "master option" to clean them all ...
Hi,
I'm looking for an solution to convert text or table/list content from iso-8859-1 to utf8 no bom.
I found theses topics however it seems all use C# or the template made by Rostonix but it's a lot of elements just for converting. Maybe the new zenno version include latin converter somewhere...