[スクリプトの自動化] ウィンドウに記述された単純な Typescript コードを使用して、オンラインで Excel 365 用のサード パーティのアドインをトリガーしようとしています。
function main(workbook: ExcelScript.Workbook)
{
// Your code here
let element : HTMLElement = document.getElementsByClassName('button.root-415')[0] as HTMLElement;
element.click();
}
しかし、私は次のエラーが発生しています:
[4, 17] Cannot find name 'HTMLElement'.
[4, 31] Cannot find name 'document'. Do you need to change your target library? Try changing the `lib` compiler option to include 'dom'.
[4, 88] Cannot find name 'HTMLElement'.
Excelリボンメニューでクリックイベントをトリガーしてアドインメニューをアクティブにし、そのタスクパネルを開く方法について誰か助けてもらえますか?