このコードを使用してExcelからデータを読み取り、「クリック、選択、閉じるなど」のようなタスクを実行するためにセレンに渡します。また、データをExcelに書き込むこともできます。
これは python です。私は VB を知りません。perl でも同じコードを提供したい場合は、perl を知っています。
これが役立つことを願っています。
from xlwt import Workbook
import xlrd
testconfigfilename="testconfig.xls"
if (len(sys.argv) > 1):
testconfigfilename=sys.argv[1]
wb = xlrd.open_workbook(testconfigfilename);
wb.sheet_names();
sh = wb.sheet_by_index(0); 'Sheet 0 - selenium server configuration'
seleniumHost = sh.cell(1,0).value
seleniumPort = int(sh.cell(1,1).value)
testBaseURL = sh.cell(1,2).value
browser = sh.cell(1,3).value
timeout = int(sh.cell(1,4).value)
path = sh.cell(1,5).value
outputwb = Workbook()
outputsheet = outputwb.add_sheet("result",cell_overwrite_ok=True) #get the first sheet in the result xls
outputsheet.write(RowNumber,colNumber,"data")