2

I am trying to setup test automation. I would like to run several different sets of IOMeter tests without individually hitting go for all of them. How do I do that using Python? If you know a different method, that would work too. I just have the rest of the test automation setup with Python.

Side note: can IOMeter record data every 5 seconds for a 30min test?

4

1 に答える 1

0

IOmeter PC で次のバッチ ファイルを作成し、リモート PC から実行できます。

iometer.bat

@echo off
SET sessionid=%1

cd <path-to-iometer>\iometer
psexec \\localhost -i %sessionid% -accepteula -u <domain>\<user> -p <password> cmd /c "<path-to-iometer>\IOmeter.exe" <path-to-iometer>iometer.icf <path-to-iometer>results.csv

@echo on

注 (1): IOmeter PC に最新のpsexecバージョンがインストールされている必要があります。

注 (2): Windows デスクトップのセッション ID を取得するには、実行する必要があります。

query session

CMDで

よく覚えているのですが、5秒ごとの録画は前回の1.1.0で実装されました。

于 2014-11-09T16:43:58.643 に答える