fork download
  1. // 必:起動オプション(accessibilityをOnにする) "--force-renderer-accessibility"
  2. path = "C:\Users\ユーザー\AppData\Local\Google\Chrome\Application\chrome.exe"
  3. id = Exec(path + " --force-renderer-accessibility --process-per-tab --new-window http://w...content-available-to-author-only...o.jp/")
  4.  
  5. 表示完了待ち(id, "Google 検索")
  6. SENDSTR(id, "ああああ", 2, 0, True) // 検索文字
  7. sleep(1)
  8. CLKITEM(id, "Google 検索", CLK_ACC or CLK_LEFTCLK) // 検索ボタン
  9. 表示完了待ち(id, "すべて")
  10. CLKITEM(id, "日本語のページを検索", CLK_ACC)
  11.  
  12.  
  13. // 指定アイテム/文字が確認できるまで待つ
  14. Procedure 表示完了待ち(id, item)
  15. While True
  16. Sleep(0.4)
  17. for n = 0 to GETITEM(id, ITM_ACCCLK or ITM_ACCTXT)-1
  18. if ALL_ITEM_LIST[n] = item then Exit
  19. next
  20. wend
  21. Fend
  22.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty