update conversation selector
This commit is contained in:
18
globals.js
18
globals.js
@@ -3,14 +3,18 @@ if (typeof window.globalsLoaded === "undefined") {
|
||||
|
||||
window.globalsLoaded = true;
|
||||
|
||||
const Selectors = {
|
||||
conversationsCheckbox: ".conversation-checkbox:checked",
|
||||
confirmDeleteButton: "button.btn.btn-danger",
|
||||
threeDotButton: '[id^="radix-"]',
|
||||
CONVERSATION_SELECTOR: "div.relative > ol > li > div > a",
|
||||
TITLE_SELECTOR: ".relative.grow.overflow-hidden.whitespace-nowrap",
|
||||
};
|
||||
const Selectors = {
|
||||
// 更新对话选择器以匹配新的 data-testid 属性
|
||||
conversationsCheckbox: ".conversation-checkbox:checked",
|
||||
confirmDeleteButton: "button.btn.btn-danger",
|
||||
threeDotButton: '[id^="radix-"]',
|
||||
// 更新为新的对话选择器格式
|
||||
CONVERSATION_SELECTOR: 'li[data-testid^="history-item-"]',
|
||||
// 更新标题选择器,保持相对路径
|
||||
TITLE_SELECTOR: ".relative.grow.overflow-hidden.whitespace-nowrap",
|
||||
};
|
||||
|
||||
// Constants
|
||||
const CHECKBOX_CLASS = "conversation-checkbox";
|
||||
|
||||
// Expose variables to the global scope
|
||||
|
||||
Reference in New Issue
Block a user