返回提交历史
Modified
g4f/requests/cdp.py
+1
-1
XFEstudio/gpt4free
Fix js error seen in debugger
5661738b
代码差异
1 个文件
+1
-1
@@ -827,7 +827,7 @@ document.querySelector('[data-send-label="Send message"],'
827
827
828
828
// 8. Click the send button on gemini.google.com
829
829
const trigger = (el, etype) => {
830
el.dispatchEvent( new Event( etype, { bubbles: true } ) );
830
el?.dispatchEvent( new Event( etype, { bubbles: true } ) );
831
831
};
832
832
setTimeout(() =>
833
833
trigger(document.querySelector(`.send-button`), `click`),