Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Selenium IDE でスクリプトの実行時間を確認する方法を知っていますか? どのようなコマンドまたはオプションを使用すればよいですか?
前もって感謝します!
私も同じことを考えていましたが、これが私が思いついたものです。
storeEval | new Date().getTime() | startTime // The rest of your code here storeEval | new Date().getTime() | endTime storeEval | (${endTime} - ${startTime}) / 1000 | scriptExecutionTime echo | ${scriptExecutionTime} seconds |