We have to fill up a particular form almost daily for 5-10 times with dynamic data. I wanted to use TextBlaze so that I can save my time here. But I am not sure how can I trigger Snippets since the start of this form is dropdown.
Hi Pratik! I have that every once in a while also. I get around that by starting the snippet in any spot that I can type into and then using tab to get to the dropdown. Using the dropdown can be a little tricky though. Figure out how to do it with your keyboard and then build that into your snippet.
@Pratik_Shah — have you tried using a {wait: delay=0.2s} after selecting the dropdown? Sometimes the website needs a little bit of time to load the contents of the dropdown menu.
I think when you get to the dropdown using the tabs that you should just use the down arrow. Don't select it. Use enter after you get to the one that you want. See if that works.
the code I am using is
{key:shift-tab}{key:shift-tab}{key:shift-tab}{key:shift-tab}{wait: delay=0.3s}{key:control-downarrow}{wait: delay=0.3s}
triggering at Department Tax ID text field.
I tried using the different methods in the code but none of those worked.
Thank you for all your help.
Hi, No, it did not work.. However, once I reach there, I am able to manually do it using "Enter" or "Downarrow". I am not sure why it is not working using TextBlaze. Can TextBlaze help me to resolve this or understand what can be the technical problem? @scott
Text Blaze doesn't actually press the key—it merely emulates what would happen when the key is pressed. This means there are some instances where the feature won't work. The Automation feature is still in the experimental phase. Of course, we plan to continue improving it, but I can't give you an ETA for when the feature will be finalized.
@Pratik_Shah - let's jump on a call, maybe I can figure out a solution. Please drop me an email at support@blaze.today with subject line: "ATTN: Cedric - re: automation"
I want to take a moment to outline some general tips about selecting from popup menus in Text Blaze.
First, if the website uses a native system popup form element, Text Blaze, doesn't allow you to select from menu the currently. This is because the popup menu selection window is not part of the web page itself (it's being handled by the operating system) so we don't have the ability to navigate it.
However, many websites use pure HTML popup menus. Text Blaze can generally navigate these. How you do that involves a couple of steps:
Navigate to the form element with {key: tab} or {key: shift-tab}
Use {key: enter} or {key: space} or {click} to open the menu (you may need to test all three)
2b) Optional: wait for a small period of time to allow the page to catch up (e.g. {wait: delay=.5s})
Use {key: downarrow} or {key: uparrow} to navigate up or down the menu to find the element you want
3b) Optional: wait for a small period of time to allow the page to catch up (e.g. {wait: delay=.5s})
Use {key: enter} or {key: space} or {click} to select the element
4b) Optional: wait for a small period of time to allow the page to catch up (e.g. {wait: delay=.5s})