I am trying to automate button click to "www.truecaller.com" , but there are 2 issues :
- I can not get the button ID.
- seems that this button is always disabled. if I enter data manually to the phone number textbox , it is enabled. But if I filled data to this textbox automatically from my application , it will always stay disabled.
Thanks for support.
Walid
Related
I'm making a trigger which fires on element click (Button) on my Add to cart button , When I click while on GTM Preview mode I cannot see the gtm.click in summary window , I also have clicked all the Click Variables inside Variables tab , what else can I do , or am I missing something?
I inspected the element of the button through firebug
Code:
class="btn-add-to-cart">ADD TO CART
The Trigger fires on
Some Clicks > Click Classes equals btn-add-to-cart
Tag Configuration
Track Type : Event
Label:{(Page URL)}
Advertising:
Enable Display Advertising Features Clicked
If that gtm.clicks tab shows I can inspect the Click Class variable for that and then it might work .
Currently it is not showing.
Did you enable the CLICKS from VARIABLE configuration ? Also make sure Tag is active
I have a windows form and I have a textbox on it and user will write a number in that and I want to do some calculation on that number. My form is like this:
http://8pic.ir/images/fsyg31jcfm7rs69yejfy.png
If one of those radio button is checked AFTER clicking on the button I want to show a console and write my math calculation step by step on that.
What should I do?
(As I said I want to show the console after clicking on the button not before that by choosing console application on output in project -> properties )
Thanks.
I have an Oracle form, which when starts has the following activated field.
1. 2 text Item + 2 push button working as LOV button
2. One Button (cancel)
Now for simplicity lets call the text time as text_1 , text_2
Now user has an option to enter any value in text_1 and either press TAB to move to next text item or use mouse pointer to move the cursor to text_2 item OR can press cancel button.
I want to know if the user has pressed TAB or used mouse to press cancel button. Please let me know in case the question is not clear to you.
if user presses tab key, forms generate KEY-NEXT-ITEM trigger. You can type your code there and manage this event. If users presses a button, forms generates WHEN-BUTTON-PRESSED.
Is this right answer to your question? If not, provide a use case, how will programm work from user point of view.
if user presses tab key, forms generate KEY-NEXT-ITEM trigger and post-text-item trigger. Again if user move the cursor using mouse then it only generate post-text-item trigger. If any text item has to fire two trigger then key-next-item fires first.
You can also get triggered item using :SYSTEM.TRIGGER_ITEM.
Thanks
Shamim Ahmed.
I have been unable to work out how to edit build settings using the pop-up shown below.
I can enter multiple lines in the pop-up by clicking the '+'. My questions are :-
What is the checkbox next to the setting used for?
Once I have entered one or more settings in the pop-up, how do I make them transfer to the setting I am editing. There isn't a 'Save' button, and clicking off the pop-up closes it but doesn't seem to save the entered data.
Thanks
To delete, check the checkbox and click "-".
To make a new one, click "+".
To save, click "Done".
Welcome to the Wonderful World of Apple UX.
I I'm using Raddatetimepicker to select began and enddate.
When user select two dates then he can click the button called fiter.
I want to show partially(it should appear when page load but in inactive mode) the button before user select the both end and began date. once he selected the both dates i should
show the button as activated.
How can I do it.
Please help me.
get two bool variables which are set false on Startup, set them true on each pick, if both true show button (visible=true or whatever)
just Disable the Filter button on window loads or initially in the Properties of the Filter Button ..use events to enable and disable the Filter button Dont use Visible==false as it may not seen when loads but if you use disabled the button can visible but it can't be clickable and using event you can enbale the filtet button using simple cade as
btnFilter.Enabled=true;