This commit is contained in:
Josh at WLTechBlog 2025-08-19 09:02:22 -05:00
parent 942c1ee987
commit 303a7bd5f7
1 changed files with 3 additions and 3 deletions

View File

@ -1966,7 +1966,7 @@ func (d *Daemon) selectElement(tabID, selector, value string, selectionTimeout,
if err != nil {
// If text selection failed, use JavaScript as fallback
// Use the simplest approach that works with rod - just set the value and dispatch event
script := fmt.Sprintf(`document.querySelector("%s").value = "%s"; document.querySelector("%s").dispatchEvent(new Event('change', { bubbles: true })); document.querySelector("%s").value`, selector, value, selector, selector)
script := fmt.Sprintf(`document.querySelector('%s').value = '%s'; document.querySelector('%s').dispatchEvent(new Event('change', { bubbles: true })); document.querySelector('%s').value`, selector, value, selector, selector)
// Execute JavaScript and get the result
result, err := page.Eval(script)
@ -3577,7 +3577,7 @@ func (d *Daemon) interactMultiple(tabID, interactionsJSON string, timeout int) (
if err != nil {
// If text selection failed, use JavaScript as fallback
// Use the simplest approach that works with rod - just set the value and dispatch event
script := fmt.Sprintf(`document.querySelector("%s").value = "%s"; document.querySelector("%s").dispatchEvent(new Event('change', { bubbles: true })); document.querySelector("%s").value`, interaction.Selector, interaction.Value, interaction.Selector, interaction.Selector)
script := fmt.Sprintf(`document.querySelector('%s').value = '%s'; document.querySelector('%s').dispatchEvent(new Event('change', { bubbles: true })); document.querySelector('%s').value`, interaction.Selector, interaction.Value, interaction.Selector, interaction.Selector)
// Execute JavaScript and get the result
result, err := page.Eval(script)
@ -3775,7 +3775,7 @@ func (d *Daemon) fillFormBulk(tabID, formSelector, fieldsJSON string, timeout in
if err != nil {
// If text selection failed, use JavaScript as fallback
// Use the simplest approach that works with rod - just set the value and dispatch event
script := fmt.Sprintf(`document.querySelector("%s").value = "%s"; document.querySelector("%s").dispatchEvent(new Event('change', { bubbles: true })); document.querySelector("%s").value`, fieldResult.Selector, fieldValue, fieldResult.Selector, fieldResult.Selector)
script := fmt.Sprintf(`document.querySelector('%s').value = '%s'; document.querySelector('%s').dispatchEvent(new Event('change', { bubbles: true })); document.querySelector('%s').value`, fieldResult.Selector, fieldValue, fieldResult.Selector, fieldResult.Selector)
// Execute JavaScript and get the result
jsResult, err := page.Eval(script)