dojox form uploader button is clickable only on the border, but not on the full button - dojo

I am using IE8
I have created dojo button as below
It has displayed button "Select Files".
Problem
When I click on top border of button its working fine. When I click on any other places on button file picker dialogbox is not displaying.
When I right click on button and select zoom in option once, I am able to click on all the coordinates of button(after selecting zoom option, it works similar to html button).
Note: I have used flash for multiple file selection.
Please tell how to make this button work by clicking in any place.

Have you checked if there is other element's borders in front of the button? Try to check with the developer tools option activated on your browser and select "inspect element" (or similar). If another element is detected when you hover over the button, you have your answer.
Apart from that I have no more ideas.

Related

robotframework- unable to click a button on a modal dialogue box

when I open a particular webpage it has a EULA form that appears on top of the home page in the form of a modal in HTML/CSS. I have tried the XPath of the accept button but it says element not found also tried using handle alert.
is there a unique way to handle a dialogue box in robotframework?
image of HTML in inspect view
SeleniumLibrary.Set Focus To Element ${button_on_popup_page}
SeleniumLibrary.Click Element ${button_on_popup_page}
I figured it out, shown in the above code. I first set focus to the button and then used the click element. This seemed to work.

I am having trouble while clicking a "Submit An App" button on my application which is present on the Menu bar

I am using the below code for this, this is present inside a frame and this also clicks the button but after button is clicked the control is lost. The possible reason i see is the page lands on same page which extra options after the "Submit An App" button is clicked.
I am using c# to code it. The first line finds the button the second line clicks but go for a timeout. I have seen this behavior fist time not sure how to work it out.
IWebElement field = VelocityDriver.FindElement(By.Id("AppSub"));
SeleniumExtensions.ClickElementAndContinue(field);

I have to maxmimize the child page minimized when it double clicked on its parent page. Is this possible to work in webform in vb.net

I had a page with gridview when clicking on the hyperlink in the cell it will open a popup window.
When this popup is minimized I was not able to click anything on the parent page so I need when I double click of mouse on parent page I want this popup to be maximized. And I was not even able to open new tab also when popup is minimized .so new tab also have to be opened when popup is minimized I dont want to use any extra buttons in my design.

How to link a certain/specific page on a PDF document to a certain word/number on a Word doc?

How would I link a specific page on a PDF document to a certain word/number on a word doc?
Please follow these steps:-
On the menu bar, select Tools > Advanced Editing > Link Tool.Your mouse cursor will change from the hand cursor ( ) to . Use this tool to click and drag, drawing a box around the text that you want to link.
Once you have completed drawing the box, release the mouse button. The Create Link dialog box will display.
Select the Open a page in this document option.
In the Page field, type in the page number of the page you want the link to jump to when clicked.
Note: Make sure you type in the actual page number of the page to which you want to link. You can determine the correct page number by going to the page you want to link to, and then look at the bottom of the Adobe Acrobat screen ( ) to see what page you're on.
Click OK to apply the settings or click Cancel to exit without applying the settings.
After clicking OK in the above steps, the box that you drew around the text to link will display in
red. You can adjust the width and height of the box if you need to by clicking and dragging each
side of the box. If you want to change the appearance of the link, go to the "Adjusting the
Appearance of the Link" section of this document.
I hope that helps!

Using Robotium with a contextual menu

I'm testing an application with Robotium, and I have a custom listview with checkboxes. When I click on a checkbox it loads a contextual menu giving the user buttons to modify and delete those items.
I can get Robotium to click the checkbox which loads the menu, but for some reason I can't get it to click on the delete button.
I've tried:
solo.clickOnActionBarItem(R.id.menu_delete);
solo.clickOnMenuItem("Delete");
solo.clickOnImageButton(1);
solo.clickOnImage(1);
So far nothing has worked. Is it possibly because I am clicking the button before the menu has popped up? How can I get Robotium to wait?
It's actually very easy, just click on the view by id:
solo.clickOnView(getActivity().findViewById(R.id.menu_edit));