Результаты поиска

  1. myndeswx

    Проверка на десятки признаков в ZennoDroid Enterprise за пару секунд

    Nice! After using ZD for a while I realized to use the same method, just get the XML once and regex the contents to see what state is it in. It is also important to check the 'bounds' because the element can be on the XML but not visible on the screen (need to scroll if you need to click it).
  2. myndeswx

    I got the error project does not contain default settings when selling templates using plugins to customers

    This project in fact does not contain settings, probably client is using an old project that needs to be updated? This ZP is pretty old version 7.7.3 maybe your template was updated using the newer versions, and can't run on this version of zennobox
  3. myndeswx

    How to get the Last Line of Excel?

    If the table does not show up means zenno can't load the file, probably the file name is incorrect(you have variables in there so check that), remove spaces, another known problem is that if you have excel open on your PC - zenno will not be able to write to it, so close the file on you PC...
  4. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Sounds like dealing with medium.. had similar headaches with it recently lol ) Well, here's what I came up with, give it a try, it's not tested on chatgpt, but I think it should give you a rough idea of what is possible, also be warned that clipboard is shared between threads!!! Tab tab =...
  5. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Goot it, well just FIY you can ask the for markdown in the API response, and it does a pretty good job, same for HTML responses ;-)
  6. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    What is the reason for not just using the API?
  7. myndeswx

    What ZennoPoster version(s) are you using?

    7.7.5 was good, then there were issues, the new 7.7.9 seems to be working pretty stable :-)
  8. myndeswx

    Discussion - new version 7.7.9.0

    • Fixed the page scale when setting window sizes larger than real ones in Chromium browser.
  9. myndeswx

    Get page headers from a request

    Yes, before visiting the site on the browser run this- instance.UseTrafficMonitoring = true; var traffic = instance.ActiveTab.GetTraffic(); foreach(var t in traffic) { if (t.Url.Contains("the url that contains your headers")) { return t.Url; // it can also be t.RequestBody...
  10. myndeswx

    I want change navigator.userAgentData,but no tips

    Give it a try, at least I use it like this
  11. myndeswx

    I want change navigator.userAgentData,but no tips

    when starting the instance you can set the user agent in chrome, that should also automatically get used in navigator- Some example how to set the navigator fields instance.ShowNavigatorField(ZennoLab.InterfacesLibrary.Enums.Browser.NavigatorField.Vendor)...
  12. myndeswx

    Gpts : Let's create Virtual assistant for Zeno!

    All the C# methods are here - https://help.zennolab.com/en/v4/zennoposter/macros/4.3.5/webframe.html
  13. myndeswx

    Anyone Get ChatGPT4 to work with ZP?

    It's inbuilt in the Newtonsoft that zenno uses for JSON parsing
  14. myndeswx

    Anyone Get ChatGPT4 to work with ZP?

    That's a really annoying issue, good thing that zenno has our back! string ob = project.Variables["aiPromptTex"].Value; string json = Global.ZennoLab.Json.JsonConvert.ToString(ob); return json;
  15. myndeswx

    Regex Challenge: Extracting Specific Group Data?

    Probably just need to adjust the regex, save page source to variable, open it up in notepad and in regex helper, from there play around with building regexes and it will work
  16. myndeswx

    How can i add all match from action designer?

    That's how it should be when automating! :ar: Yes, I have seen it likes to include some C# code that does not exist in zp, but after tidying it up a bit it's definitely possible to get some good examples, always use 'write zennoposter code' and not C# code, you can also post the code snippets...
  17. myndeswx

    How can i add all match from action designer?

    There are about 40 languages, putting each of them to variables will be hard work, and we don't like hard work :- ) you can just use C# to iterate through that list and open everything up (if your PC does not get on fire) //our list that we just made with regex var list =...
  18. myndeswx

    How can i add all match from action designer?

    You're welcome, and no, as far as I know only possible to get the collection through C# , you can also use this little tool, that basically does what we just did with regex but all automatically, but it does not seem to work with your website.
  19. myndeswx

    Load URLs In Multiple Tabs

    You could create a C# cube and don't wait for the page to fully load like this - Tab tab1 = instance.NewTab("1"); tab1.Navigate("https://www.youtube.com/watch?v=9ba3coWgSPg"); Tab tab2 = instance.NewTab("2"); tab2.Navigate("https://www.youtube.com/watch?v=9ba3coWgSPg"); Tab tab3 =...
  20. myndeswx

    Extracting data from a website that can't be extracted

    Got it, so possibly this iframe page does not even have the pixel installed? If you have access to this page I guess you could just put the pixel on this iframe as well?
  21. myndeswx

    Extracting data from a website that can't be extracted

    okay okay, and it also does not work in chrome/firefox with this method?
  22. myndeswx

    Extracting data from a website that can't be extracted

    I think you just answered your own question, it works on chrome but on on ZP, then you need to look why it does not work on zp, it's much easier if you have access to the website
  23. myndeswx

    How can i add all match from action designer?

    You can simply regex the {-Page.Source-} working with the regex helper alone you already get almost perfect result, to get rid of the first result you can fine tune the regex a bit more manually, in this case to include only {2,3} lovercase letters and / Full regex- (?<=<a\...
  24. myndeswx

    Extracting data from a website that can't be extracted

    How do you know if the pixel fires, do you own this website? Also, did you try this method on your own chrome?
  25. myndeswx

    Extracting data from a website that can't be extracted

    Interesting, my suggestion would be to try registering through that URL or iframe manually on chrome, if it works - we eliminate the possibility that registration does not work directly on iframe. In that case the chances are that the issue is with anonymity or the data being used, like...
  26. myndeswx

    Extracting data from a website that can't be extracted

    Create a cube like this, the regex to use - (?<="camera"\ src=").*?(?="\ data-hj-allow-iframe=") Check out the regexp builder in zenno, it's a very easy to use tool and you will 100% need to use it in the future, so just get used to it now ;-)
  27. myndeswx

    Extracting data from a website that can't be extracted

    There you go, the issue is that this window is loaded as iframe, if you open it directly everything works, just need to generate correct date fo birth and you should be good to go.
  28. myndeswx

    Spotify on chromium?

    Hello, does anyone have spotify running on chromium? I tried following the instructions here - https://zennolab.atlassian.net/wiki/spaces/EN/pages/2111864833/Instructions+for+using+Widevine+component but it still does not work. Thanks!
  29. myndeswx

    List Question

    It's a smart approach, and it could work if you had the 'save changes to the file' unchecked, and you would not actually need to add any lines back, BUT this will not work in multithreaded. Because this would be an infinite loop, it would keep taking and adding lines back to the file forever...
  30. myndeswx

    Extracting data from a website that can't be extracted

    Create a cube like this when the page is loaded. Make a screenshot of the page Upload the value of 'source' variable here (all the HTML) and the screenshot
  31. myndeswx

    How to generate or find ZIP codes for specific countries and cities

    https://xyproblem.info/ please explain what is your main goal
  32. myndeswx

    Extracting data from a website that can't be extracted

    regex action, source - {-Page.Source-} regex -(?<=<td>)\d{11,11}(?=</td>) , might need to adjust the regex based on the page source. You can first set {-Page.Source-} to a variable and see in a notepad how those numbers look exactly, just paste it here if it does not work.
  33. myndeswx

    How to generate or find ZIP codes for specific countries and cities

    You can generate random coordinates around your city and use reverse geocoding from google APIs, or mapbox which has very generous free limits. I believe OSM even has totally free API for that
  34. myndeswx

    Delete file contents every 24 hours

    You can use UNIX time, it's made exactly for tasks like this one, that way you can delete it correctly after exactly 24 hours not a minute more or less =)
  35. myndeswx

    how to use keyboard emulation -DOWN in this case?

    Just share the registration page, will be easier to help :-)
  36. myndeswx

    Starting all tasks from bat

    Damn, there really is, can't believe I never noticed it haha, thanks!
  37. myndeswx

    Starting all tasks from bat

    Hello, I am starting zenno on startup through a simple BAT file, but sometimes all tasks are stopped after reboot. Is there a way to pass some argument when starting to start all the templates? Thank you
  38. myndeswx

    Help with Using Variables and regex for grabbing unique codes for emails

    That's the whole idea, in the generated cube you of course have to place your X email instead, so each time it's looking for the correct one P.s , in your case it might not be exactly like " To: [email protected]" , each server could be treating it differently, you must check how it looks while...
  39. myndeswx

    Help with Using Variables and regex for grabbing unique codes for emails

    Only way to find out ;-)
  40. myndeswx

    Help with Using Variables and regex for grabbing unique codes for emails

    Goot it, if you aren't already, you should setup email by following this handy tool at the top by going to tools>Email processing and connecting to your catchall email Then following the setup in the 'search criteria' field search for your X email, it is shown in the email because it is...
  41. myndeswx

    Help with Using Variables and regex for grabbing unique codes for emails

    Hmmm, still quite not sure. So you are getting that email from the emails list, and what credentials are used for 'receive emails' cube, is it the same 1 email every time? Trying to understand your setup is it something like Select X email from list > signup on website using email X > Search for...
  42. myndeswx

    Help with Using Variables and regex for grabbing unique codes for emails

    You will have to clarify, show screenshots/share the template. It's really hard to understand what your issue is, are you trying to use one catchall email to register multiple accounts at the same time and can't find corresponding emails?
  43. myndeswx

    Как убрать всплывающую рекламу в memu

    Please send the test version for enterprise if available in English, thank you! :ar:
  44. myndeswx

    Реализуйте пожалуйста возможность Человекоподобного Свайпа для Zennodroid

    Interested if possible for both enterprise and pro. Thank you!
  45. myndeswx

    Yandex map scraper

    Hello, maybe someone has a ready product/knows a service Need to scrape businesses from yandex maps and download photos (only interested in photos)
  46. myndeswx

    Executing action Run deviceof Could not run device,why sir?

    You did not select anything, to work with emulator you must first use the 'select device' cube. (Before starting it)
  47. myndeswx

    Run multiple threads, and the first one to open the site makes all the others stop running. Help

    Seems like a job for 'global variables', you could create a variable 'inuse', it's value will be shared across different threads. Default value should be False Before entering the page each thread must check if that global variable 'inuse' = false , if it is true- then wait 10s and check again...
  48. myndeswx

    Обсуждение версии 2.3.5.0

    Sadly also does not work on LD, with root, or without root same error - "Executing action CSharp OwnCode: Get accounts for app.id: 6feca2fc-b351-485d-9a66-e9ebc7da37f7 SU not found"
  49. myndeswx

    Filling out forms using HTTP requests

    I'm happy to help! It really depends. You would make a GET request to get either the cookies for the POST request, OR there is some hidden value in the page source that must be used in the POST request. For example, looking at my previous GIF, you can see there is this 'authenticity_token', I...