Active TAB URL - How to save it in the table? #524
Answered
by
Kholid060
alpha-code2019
asked this question in
Q&A
-
I tried and tried and tried, But the only solution I came up with was the use of the "Clipboard" block, I have to click and copy the URL in the browser address bar, then Automa adds it to the table. Isn't there a more elegant approach/solution? Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
Kholid060
Jun 5, 2022
Replies: 2 comments
-
Use the javascript block, const currentUrl = window.location.href;
automaNextBlock({ columnName: currentUrl }); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Kholid060
-
Thank you, Ahmad - it works like a Swiss clockwork!
Am So., 5. Juni 2022 um 04:08 Uhr schrieb Ahmad Kholid <
***@***.***>:
… Use the javascript block,
const currentUrl = window.location.href;automaNextBlock({ columnName: currentUrl });
—
Reply to this email directly, view it on GitHub
<#524 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANQ5JDIP7YQKIPXFAQ33FYDVNQD2HANCNFSM5X4JYXLA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use the javascript block,