ssborbis / ContextSearch-web-ext

Search engine manager for modern browsers
321 stars 36 forks source link

How to send the enter key? #612

Closed StrollStars closed 1 year ago

StrollStars commented 1 year ago

Some websites need to press the Enter key to start searching after entering keywords, and there is no search button, such as this one. @7peanuts 也请帮忙看下如何发送回车键。

ssborbis commented 1 year ago
(() => {
    let input = document.querySelector('#wp-filter-search-input');
    input.value = searchTerms;
    input.dispatchEvent(new KeyboardEvent('keypress', {key: "Enter"}));
})();
StrollStars commented 1 year ago

@ssborbis Thank you very much.