Skip to main content

All Questions

0 votes
1 answer
625 views

Excel VBA to select a navigation Tab on a Webpage

Stuck in an area of a webpage and can't seem to figure out how to select any one of the navigation tabs. I've already gotten through coding for the ID, password and a couple of other screens to get to ...
John Wilson's user avatar
-1 votes
2 answers
1k views

How to click on a javascript button on IE 11 using VBA?

The VBA code is not responsible because it doesn't work on IE 11 even not programmatically. The button works with Chrome or Firefox but I cannot manage to use Selenium on my computer, it is throwing ...
Pierre Qui Roule's user avatar
1 vote
1 answer
107 views

Website not recognizing selection done through VBA code

Below mentioned code is working fine, the problem i'm facing is that when I enter CAPTCHA and click proceed button, the website doesn't recognize the selection for NetBanking Tab, the said selection ...
Arpit Jain's user avatar
2 votes
1 answer
540 views

getElementsByTagName is not finding "Input" or "td" tag with ID in it

I'm attempting to navigate a webpage in IE11. The page is internal work related so I cannot share the page. I have navigated multiple pages from the site without any issue, until I have reached a date ...
TBoulz's user avatar
  • 351
1 vote
2 answers
328 views

Error code 91 Object variable or With block variable not set

I'm trying to perform a web automation, which involves logging in and search for a particular text on my spreadsheet on to particular box on the webpage. I'm Encountering an error in the 2nd step to ...
James D Con's user avatar
2 votes
0 answers
196 views

How to add elements revealed by click action to elements list in Excel VBA for an html web form

I'm trying to set up an Excel form that auto-fills an HTML web form. I've figured out how to use VBA to get the elements and cycle through them to add values. My issue is with a text field that is ...
gramzad's user avatar
  • 21
0 votes
1 answer
293 views

VBA to Click Dropdown Link in IE without Name/ID

I'm trying to click a link on a company webpage through VBA. The issue is that the HTML doesn't have a Name or ID. I have seen many different scenarios on this site, and I have been attempting them, ...
TBoulz's user avatar
  • 351
1 vote
1 answer
451 views

Webpage search filter inputs not detected when apply button is pressed via Excel VBA

I'm trying to write a VBA program which will find the person holding a specific position at a specific company via LinkedIn. I've already figured out how to open the LinkedIn search window, open all ...
dav278's user avatar
  • 41
0 votes
1 answer
393 views

IE11 Automation via Excel VBA - Forms

This is part 2 from my original post here. So now once logged in, I have to make two clicks to display the information I'm ultimately trying to scrape. I cannot seem to figure out the proper way to ...
user9837831's user avatar
2 votes
1 answer
10k views

Excel VBA Code Not Working With Internet Explorer 11

I have a vba code which can upload the data from an excel sheet to a website. However, the code works fine in IE browser 8,but it does not work on a win8 IE browser 11. It gives error 438 ("Object ...
Syed Atif's user avatar
0 votes
1 answer
1k views

Convert HTML Table to Excel on IE 11

I want to create xls(excel) file from html table structure using IE 11. I have gone through some solutions on site, however none of them works on IE11. I am using Angular2.
varun chandwani's user avatar
0 votes
1 answer
260 views

Submitting form on child window

I have a vba script that automatically navigates its way through ups.com. It does just fine until it comes to a child window with a different url. In that child window is a simple form, but when the ...
Matt Cremeens's user avatar
0 votes
1 answer
199 views

Download File from IE11 + Create a folder to store it

I had lots of issues dealing with that IE 11 download bar when downloading a file. I checked different solutions but the only way to make it work the most reliably possible was to put two of them ...
Seb's user avatar
  • 520
2 votes
0 answers
157 views

form submitting with onLoad input values instead of user inputted values when automated with VBA

Main Issue: When I submit a form using vba, the form's inputs' values change unexpectedly. I'm looking to see if there's an issue I don't know of with document.forms().submit in vba that might be ...
Kevin Dolan's user avatar