我试过使用:
require 'watir-webdriver'
require 'win32ole'
xl = WIN32OLE.new('excel.application')
wrkbook= xl.Workbooks.Open("C:\\Excel\\workbook1.xls")
wrksheet = wrkbook.Worksheets(2)
wrksheet.Visible=1
并且也尝试过
wrksheet.Visible=True
脚本执行没有错误,但它没有打开 Excel 文件。我会很感激任何帮助。