Search results

  1. A

    JavaScript Code doesn't work only in Virtual Android Emulator

    I have a Javascript code that in my smartphone works, however in my virtual Android smartphone it doesn't and I don't know why, I would like to be able to use this code there as well. This code reads the text on the display through the touchtask Plugin and then through variables, arrays Strings...
  2. A

    How to create a loop that counts how many elements there are that have the same View Id in the screen?

    I would like to do a screen read content to see what elements are in my screen and then store them in an integer variable that I will need for the loop. Example: If there are: com.banana1 com.banana2 com.banana3 I want to know how many com.banana there are. After checking in this case the...
  3. A

    How can I click the element I want using autoinput and increasing its X?

    Thanks to autoinput, I can simultaneously click all the elements I see that have a certain View id, however now what I want to click is next to the 'element I want. The elements do not have a specific position but change, I am only interested in finding them(which it already does automatically...
  4. A

    How can I set the x and y coordinates of a string variable?

    Through autoinput I can get the coordinates of an element example: 120,400 and they are part of a string variable How can I specifically take the first value 120 and set it as the x of a click and the second value 400 as the y of the same click?
  5. A

    How to reverse the dictionary entries of a read screen content variable?

    I have a dictionary array loop that takes dictionary entries obtained thanks to read screen content. Inside this loop I have an if with a click view id in it that through a setting manages to make me click the buttons I want using their view id. This happens from top to bottom, from the first...
  6. A

    How can I create a macro that automatically clicks all buttons that have the same View Id?

    I want to make a loop that allows me to click as many buttons as I can see in my display. It is the exact same button and there are multiple buttons to click and each button only needs to be clicked once. The 'id of the button is the same but each button has a number for different, example...
  7. A

    How can I create a variable that increases decreases based on ID?

    I want to click a button, this button wraps can be in different y positions: For example: Wraps the button can be x100 y100 or x100 y 200 I want to be able to identify where the button is, and based on its location make a series of clicks going from above the button and having a distance...
  8. A

    How to create a variable Y that can increase or decrease by 10?

    How to create a variable Y that can increase or decrease by 10? I want to create a series of clicks, they must have the same x and must start at y 5000 however all other clicks must go up, so the next click must be higher than 10 y. For example: First Click: x: 1000 y: 5000 Second Click: x...
Top