Using iedriverserver.exe to manage Edge in IE Mode with VBA scripting

Are there any code examples available for controlling Edge in IE Mode using iedriverserver.exe in VBA? I have the exe downloaded but am having trouble adding the necessary library to tools->reference in my VBA project.

If anyone has experience with this topic, please share your knowledge. Thank you.

Answer №1

As far as I know, currently there is no automatic way to enable Edge IE mode using VBA.

To automate Edge IE mode, you can utilize Selenium. To learn more about utilizing the IE driver for automating IE mode in Edge, you can refer to this documentation.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

[Java][Selenium] What is the best approach to locating and interacting with a button on the frontend that shares its name with other buttons?

Currently I'm in the process of developing a test suite and while inspecting elements using F12, I've noticed several buttons without an ID, sharing the same name, all under the same class with the only difference being the link they lead to. Is ...

Can you guide me on how to establish a cookie within a selenium webdriver javascript script?

I am trying to figure out how to set a cookie using a basic webdriver script: WDS.sampleResult.sampleStart(); //WDS.driver.manage().addCookie(new Cookie("connect.sid", "s%3AeexeZcd_-S23Uh30e3Dmd4X9PskWF08s6m5hDurDa5Jj66SupmmiqvKEjAg6HGigl0o0V%2B9R7m4", ...

In Javascript, a function is executed only once within another function that is set on an interval

Using the Selenium Chrome driver in my JavaScript, I am constantly checking a value on a website every 2 seconds. However, I need to only save status changes to a text file, not every single check. The current code is functional but it saves the text fil ...

Navigating array usage in Selenium IDE

I am trying to extract emails from a webpage using Selenium for future testing. I need to compare these emails with ones displayed in a selection later on. I attempted to read the emails within a while-loop but struggled with handling arrays in IDE. Unfor ...

Navigating between tab in Selenium IDE

Is there a way to switch focus to a newly opened window using Selenium IDE? After clicking on a link, a new tab opens but I am having trouble shifting the focus to that new window. I attempted to follow advice from this Stack Overflow answer, but it did ...

Using Selenium with headless Chrome to mimic a PC's browser request

While utilizing Selenium with headless chrome, I encounter the following error: selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element This occurs when the script attempts to click on driver.find_element_by_i ...

Obtaining the dynamic id with xpath in Selenium WebDriver

I am having trouble retrieving the id of an element that starts with 'u_' and ends with '_5', with varying data in between. Sometimes it appears as 'u_d_5' while other times it is 'u_6_5'. The usual methods like star ...

What steps can be taken to execute a selenium webdriver on a client machine?

I have integrated Selenium WebDriver with Internet Explorer in a Java web application. On my server, I am using Apache Tomcat 6 to host the application. While all tests are functioning correctly on my local machine, when attempting to access the applicatio ...

Utilizing cucumber for feature-level data tables

I am facing a situation where I have multiple scenarios in the same feature file that need to share a data table. This would simplify things for users as they wouldn't have to duplicate test data across different tables within the feature. For exampl ...

Error: Element at index 1 could not be found when using the select_by_index method in a Selenium loop with Python

On the page there is a selection box present, <div class="select select-gender select-container"> <select name="gender" class="my-dropdown 115px option" data-field="gender" data-type="dropdown"> <option value="female">Woman</opt ...

Hovering events for Firefox Driver / Selenium WebDriver on Mac OSX are not functioning as expected

Despite my extensive search efforts, I have been unable to find a solution for making mouseover events work on Firefox 16.0.2 and Selenium 2.28 on Mac OSX. It seems that this issue is specific to Mac OSX, as the same code works on Windows machines. The fol ...

Selenium grid can handle up to 4 to 5 simultaneous sessions

Currently, I am utilizing a Selenium grid with 3 allocated machines. Here is my configuration for the hub: { "port": 4444, "newSessionWaitTimeout": -1, "servlets": [], "prioritizer": "com.xxxx.xxxx.grid.xxxxxxx", "capabilityMatcher": "org.openqa ...

There is no element found: Element cannot be found: {"method":"xpath","selector":"//*[@id="_id0:logon:USERNAME"]"}

Hello, I am currently facing an issue when trying to insert a username into a text field. Unfortunately, I am unable to retrieve the Xpath using the following code snippet. Can anyone provide assistance in resolving this error? from selenium import webdriv ...

Select the radio button that is hidden from view

There is a radio button with a hidden input that I can't see when inspecting the element. This is what I am encountering: https://i.stack.imgur.com/LnKnz.png Here is the HTML code snippet: <rhr-radio-button element-id="criterion-type" model="$ct ...

Encountering a problem with clicking a button using XPath in Python with

I am currently facing a challenge with scraping data from an Airbnb listing. Specifically, I am struggling to retrieve the full list of amenities without manually clicking on the "more" button. To address this issue, I have attempted to use Selenium to a ...

Setting up selenium for CEF/Winforms programs (executable files) - a comprehensive guide

Main Question: What are the steps for setting up selenium with CEFsharp applications in C#? If you're struggling with configuring selenium for CEFsharp applications, check out this post. After facing difficulties myself and researching extensively on ...

I am encountering an issue where my script is unable to add subsequent pages' tables to the bottom of

I am facing an issue with my code where I am trying to scrape all tables from 8 pages, but it only scrapes the first table. Even though it is able to navigate through the other pages and scrape individually on each page. However, it does not scrape all o ...

Insufficient data in CSV file while saving data using Selenium

I recently began working with Selenium and following tutorials on a popular video platform. While the tool has been mostly reliable, I encountered an issue where the CSV file was created but did not export the displayed data. The CSV seemed to be "touched" ...

The process of invoking a test method by instantiating an object in TestNG

I have implemented the POM framework and organized my code in the following manner : This is My InviteFriendPage public class InviteFriends { @FindBy(xpath ="//li/a[normalize-space()='Invite Friends']") public WebElement inviteFriendsL ...

Selenium GUI tests are not showing up when running in Jenkins on a Windows 7 machine

I am encountering an issue where when I run my Selenium test (mvn test) from Jenkins on a Windows system, I can only see the console output and not the actual browsers being opened. Is there a way to configure Jenkins so that I can view the browsers runn ...