All Questions
Tagged with browser-automation vba
48 questions
0
votes
0
answers
1k
views
Send Keys from VBA to chrome by Chrome DevTools Protocol
I want to automate Chrome from Excel VBA. I am using the framework mentioned in : (Method 2 in the answer)
Automating Edge Browser using VBA without downloading Selenium
where in github located
https:/...
1
vote
1
answer
316
views
Why is VBA throwing Run Time Error 438 when using querySelector to click link on website?
I am trying to navigate through a website using a VBA macro. I have been successful so far adapting my code off of this answer, but have come upon a situation where I need to click on a "logout&...
0
votes
1
answer
3k
views
Using Selenium VBA - How to Download files in headless mode
I have found code snippets in java script and in python on how to enable downloading of files in headless mode using the chrome driver. However I am unsure on how to replicate the lines of code to run ...
0
votes
1
answer
119
views
How Do I Click a div dropdown menu using VBA IE automation
Have the following DIV class, where you click on the bottom it will create a drop down menu. In browser, you can click it with mouse, however with IE automation with VBA. I tried the ".click"...
0
votes
1
answer
98
views
How to Select Tab in Internet Explorer Named href="#GST" using VBA excell
I am doing automation of IE using VBA excel and I am not able to select on Tab href="#GST"
<a role=”tab” aria-expanded=”true”
aria-controls=”GST”
href="#GST"...
0
votes
1
answer
554
views
IE automation VBA - How to access a span button without any text
I am trying to do IE automation using VBA and facing a problem in clicking a span element.
I want to click on the below element.
<span class="x-btn-icon-el x-btn-icon-el-default-toolbar-small de-...
0
votes
1
answer
216
views
Unable to select dropdown list in internet explorer through VBA
I'm trying to select currency from a list on this website : https://www1.oanda.com/currency/converter/
The problem is value gets entered into those fields, the selection is basically the currencies ...
0
votes
1
answer
303
views
Can´t use selenium on vba
I'm used to running a script on vba using selenium in windows 7 with no problem, and since I installed Windows 10 a just can not open the Google Chrome automated window.
Already installed google ...
0
votes
2
answers
671
views
Bypassing date picker on webpage, executing onclick function
I want to convert an Excel report from our roster webapp into ics calendar events.
I would like, using VBA, to log in and export the roster by selecting the start and end dates.
The start and end date ...
0
votes
0
answers
100
views
Trigger combobox change event
I am working with DATAGRID in web application now, having problem where i can select the object by code , change the value of combobox by code, yet it did no trigger the 'updates' in the application ...
0
votes
2
answers
119
views
select value from website dropdown by vba
i am trying to select value in website drop and i try so many way but nothing works
I am stuck at one point where I need to select value from the drop-down box
I have four drop down and i want to ...
0
votes
1
answer
443
views
VBA / Internet Explorer: Capture Resulting URL From OnClick Event
I am automating some data collection using the Internet Explorer object in VBA, and have hit a wall trying to obtain a url resulting from a href onclick event.
The link is being "clicked" by the code ...
1
vote
1
answer
667
views
VBA - IE - Click one button to make another 'Input Enabled'
I am writing a macro in VBA connected to the following website:
https://sphere.ush.inbcu.com/index.html#/ (Probably you won't be able to login there).
There are two elements:
On the left there is a ...
0
votes
0
answers
431
views
Is there a way through VBA to emulate a button click, when the button is a DIV with event handling disabled?
I have been a fan of you guys for years I am hoping that someone can assist. I have been working on and off on this problem to no avail for almost a year now hopefully someone out there might be able ...
1
vote
1
answer
806
views
VBA IE Automation WebSite Login Button not working
The username is being populated, but the button will only work after I have physically clicked into the username field with my mouse....
HTMLDoc.getElementById("loginForm-email").Focus
HTMLDoc....