How to click and input text?
hkfsc opened this issue · 1 comments
hkfsc commented
How to click and input text?
jpramosi commented
Firefox its RDP implementation doesn't have any actors to directly interact with the html content like peripherals would do. Though it's possible to use javascript with evaluate_js_async():
let textbox = document.querySelector("#suggestion-search");
textbox.focus();
textbox.select();
textbox.value = "test";
However it might not work for every website.