can user is able to give manual input while running selenium IDE script? For ex. If there is name field then can we open input box everytime script runs so that user can give hi
You could use the technique suggested here which uses the Selenium WebDriver and Java's BufferedReader
. I don't think it can be adapted for Selenium IDE, but the technique should work fine with Selenium RC.
The basic idea is:
Call the following code to capture the user input to a BufferedReader.
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
reader.readLine();
(Note, if you are using C#, there is a discussion here on how to use Console.In.ReadLine();
instead of BufferedReader
).