Can the time weighting be recorded while recording the script in appium studio?. How?

Can the time weighting be recorded while recording the script in appium studio?. How?

If you mean “waiting time”, then have you tried not to click for some time and then clicked any element?

Check this

Line 1. driver.findElement(By.xpath("//[@id=‘usernameTextField’]")).sendKeys(“company”);
Line 2. driver.findElement(By.xpath("//
[@id=‘passwordTextField’]")).sendKeys(“company”);
Line 3. new WebDriverWait(driver, 30).until(ExpectedConditions.presenceOfElementLocated(By.xpath("//[@text=‘Login’]")));
driver.findElement(By.xpath("//
[@text=‘Login’]")).click();

In the above lines of code, Line 1 and Line 2 were clicking almost pretty quick and I gave a wait time (didnot click and waited for some seconds) to click the Login. Appium Studio did add the Expected conditions which were different from Line 1 and Line 2

I hope this clears your question. Please do try it is quite a simple test.