1 Answers
What is the difference between store and storeEval commands in Selenium IDE?
The store command is used in Selenium IDE to store a value into a variable for later use within a test case. This command simply assigns a value to a variable.
On the other hand, the storeEval command in Selenium IDE is used to store the result of evaluating a JavaScript expression into a variable. This command allows for more complex manipulations and calculations to be stored in a variable.
Therefore, the key difference between store and storeEval commands in Selenium IDE is that store stores a simple value into a variable, while storeEval stores the result of a JavaScript expression evaluation into a variable.
Please login or Register to submit your answer