variable

  1. D

    FTP connection credentials

    My question: When I attempted to write FTP credentials to variables, they were empty. How to write FTP credentials to variables in the right way? Long story short - I want to connect to different websites on different hostings. I wsnt to store FTP credentials for each domain I have in a text...
  2. S

    How can I put 50 lines to one variable ?

    Helo I would like to put 50 lines from table or list - only to one variable . Example 50 x emails to one variable Thanks
  3. Z

    Присоединить переменную с именем домена

    Можно ли объединить переменную со статическим доменным именем? Первая часть {} -Profile.NickName- Например: Роб Вторая часть domain.com Я желаю ZennoPoster для ввода [email protected] в поле электронной почты В этом случае я могу просто ввести в свойствах действия следующее...
  4. KitKat21

    как найти, содержится ли слово в переменной?

    Здравствуй! Как написать код C #, чтобы найти, содержится ли слово в переменной? Пример: Значение переменной 1: текст текстового текста <span> <html> текстовый текст John <div> и т. Д. Мне нужно знать, содержится ли «Джон» в тексте в переменной 1. Как это сделать? Благодаря...
  5. KitKat21

    How to use Variables in C# code to FindElementbyAttribute?

    Hi guys! I hope someone can help me. I'm experimenting with using variables in C# code (thanks to those kind users here who helped me use variables in the code!). I want to have random settings to emulate moving a mouse/scrolling randomly over different parts of a page to look natural. So...
  6. KitKat21

    How to add variable into C# block?

    Hi guys! I hope someone can help. How can I add a variable into a C# block? I need to add a variable into the code below: Tab tab = instance.ActiveTab; // Action designer, type Set HtmlElement he = instance.ActiveTab.GetDocumentByAddress("0").FindElementByAttribute("section", "fulltagname"...
  7. Frcc78bis

    Use regular expression to select a specific value on a dropdown

    Hello Guys, I'm trying to select a value on a dropdown. My variable is "Géomètre/Topographe", so it's working fine. (see second image). But, imagine my variable is only "Géo". So I want to use regular expression (regex) to find the right <option> and to select it. The one that contains "Géo"...
  8. Kacmil

    How to change data format?

    Hello, How to change data format from 10 january 2016 to 2016-01-10 ? I make a template which take DOM that Regex "(?<=<span\ class="articleDate">([\w_]+),).*(?=</span>)" It change 26 January 2013 (21:20) to 26 January 2013 and I would like to change that to 2013-01-26 and put to variable...