03-02-2024, 10:10 AM
Or click the Copy button. It gets markdown text.
// script ""
print.clear();
var w = wnd.find(1, "ChatGPT - Google Chrome", "Chrome_WidgetWin_1");
var e = w.Elm["web:GROUPING", prop: "@data-message-author-role=assistant", flags: EFFlags.Reverse, navig: "ne2 fi"].Find(1); //the navig finds the Copy button
clipboard.clear();
//e.Invoke(); //does not work
if (e.IsOffscreen) {
e.ScrollTo();
wait.until(3, () => !e.IsOffscreen);
500.ms();
}
e.MouseClick();
var s = wait.until(3, () => clipboard.text);
print.it(s);