gpt4 book ai didi

javascript - 将整数从 applescript 传递到 javascript

转载 作者:行者123 更新时间:2023-12-02 17:46:09 25 4
gpt4 key购买 nike

我试图将一个整数传递到一个执行 JavaScript 语句中,以用作 JavaScript 中数组的索引。这可能吗?如果可能的话,如何实现?

set i to 0
tell active tab of win
set failedTests to (execute javascript "document.getElementsByClassName('specDetail failed')[i].getElementsByTagName('a')[0].title") as string
end tell

最佳答案

尝试:

set i to 0
set jsCommand to "document.getElementsByClassName('specDetail failed')[" & i & "].getElementsByTagName('a')[0].title"

tell application "Google Chrome"
tell active tab of window 1
set xxx to execute javascript jsCommand
end tell
end tell

关于javascript - 将整数从 applescript 传递到 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21741994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com