Is there a way we can set this up to allow pauses between actions? Right now I have a profile setup up to select a radio button, fill in a phone number, and select an entire list. The phone number and the list depend on the radio button being pressed before they appear. So it selects the radio button, but by the time the new form items load, the number and list actions have already been done, and don't get processed on the form.--
--
You received this message because you are subscribed to the Google Groups "Autofill Google Chrome Extension" group. To post to this group, send email to chrome-...@googlegroups.com. To unsubscribe from this group, send email to chrome-autofi...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/chrome-autofill.
---
You received this message because you are subscribed to the Google Groups "Autofill Chrome Extension" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chrome-autofi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
// Select country
document.querySelector('#country').value = 'US';
// Select state when it's populated with states
var elState = document.querySelector('#state');
var timer = setInterval(function() {
if (elState.options.length) {
elState.value = 'California';
clearInterval(timer);
}
}, 1000);
Can we just do it for selected controls. Like check box is false by default but we enable it only for once which i want to introduce delay. In my case i will select only for 3 drop downs and also arrange them in order.
Thanks for sharing js snippet will try that out too. But UI delay config will also be very helpful
Regards,
Amanpreet Singh
Regards,
Amanpreet Singh
Regards,
Amanpreet Singh