Top 3 Changes in the MODERN Design of UiPath Studio

Поділитися
Вставка
  • Опубліковано 17 вер 2024

КОМЕНТАРІ • 13

  • @elcarryboo9344
    @elcarryboo9344 Рік тому +1

    This is very helpful. I've just watched a series of « old » tutorial (2019)... and this fixed a lot of issues !

    • @redamarzouk
      @redamarzouk  Рік тому +1

      Yeah definitely, a lot of features have been added to modern that makes life easier now!

  • @yogeshbhavsar9368
    @yogeshbhavsar9368 11 місяців тому +1

    thanks for wonderful video. big fan of you. please share video description file git hub url.

    • @redamarzouk
      @redamarzouk  11 місяців тому

      Thank you, it means a lot 😁😁
      I’ll share the GitHub repo asap

  • @vij529
    @vij529 Рік тому +1

    How can we fix this issue - This job cannot run with current folder configuration, please fix the folder configuration to resume the process

    • @redamarzouk
      @redamarzouk  Рік тому

      Hello,
      So I suppose you have a problem with launching a job from orchestrator in a certain machine.
      There are some things I need to know about your setup before I can give you an exact answer.
      Do you want to launch the process directly in your machine, are you admin of your orchestrator, do you want to launch an attended or unattended robot?

  • @UiPathUser
    @UiPathUser Рік тому +1

    Hi Reda. "Use Application/browser" i see it is capturing URL in the Browser URL, and you add whatever activity inside use application/Browser. But then what happens when you move the code to prod server? the url it is capturing is of Dev site then how to pass dynamic url to the activity so it doesn't open dev site url in prod server bur prod link is opened?

    • @redamarzouk
      @redamarzouk  Рік тому +1

      Hello UiPathUser,
      Good question.
      when deploying your process to production the URL value should not be hardcoded like in the tutorial, you should have either a string variable or argument inside the URL of the use application browser.
      You then can change the value if it's an argument, or have it as a variable that you read from a config file that you can also change.
      Either way the value should be dynamic.
      hope that answers your question.

    • @UiPathUser
      @UiPathUser Рік тому +1

      @@redamarzouk The problem i am facing is there is standard part in the url then very lengthy dynamic parameters and string for example "standard url" / "dynamic part" so i am wondering if i can say in the URL section like this "standardpart"+"/*" where the * will replace any dynamic part?

    • @redamarzouk
      @redamarzouk  Рік тому +2

      @@UiPathUser you can use the wildcard in this way "standardURL*"
      but if you can add it to a config file and read it from there it will be better if you want to change that url in the future.

    • @UiPathUser
      @UiPathUser Рік тому +1

      @@redamarzouk Yup. Got it. Thank much

  • @880juanjo
    @880juanjo Рік тому

    Isn't it a problem to mix classic and modern activities in the same project?

    • @redamarzouk
      @redamarzouk  Рік тому

      I've tried mixing activities from modern and classic in the same project,
      I even tried classic clicks inside
      use app/scope and it worked with no issues.
      Although I won't recommend doing it.