Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
35 views

I am trying to use the Remove Table of Contents command found in menus via vba. This is in Microsoft Word ribbon versions. This command removes containers with a TOC field in it. I know of no direct ...
Charles Kenyon's user avatar
3 votes
2 answers
155 views

In a Powershell script, Mute is performed with: (New-Object -ComObject WScript.Shell).SendKeys([char]173) That works. Windows reference lists constants for each key. Mute constant is VK_VOLUME_MUTE. ...
johny why's user avatar
  • 2,270
0 votes
3 answers
78 views

The aim of my program is to enter a set of postcodes into a flatshare website (https://www.spareroom.co.uk/flatshare-house-share/uk/) and return the number of rooms wanted and rooms available for each ...
Human2.0's user avatar
1 vote
2 answers
110 views

I feel like I am 3/4 of the way to my objective. I've created VBA that will populate an automated e-mail with attachments, based on the name of a folder the user previously selected. It goes like this:...
Joey56's user avatar
  • 35
0 votes
1 answer
454 views

I'm trying fill up web form by data from Excel byVBA. I have a problem with movement on form's items by arrow keys. Web form accept only arrow keys from main keyboard, arrow keys from numpad are used ...
Jerry's user avatar
  • 33
0 votes
2 answers
57 views

In a web autoamtion process with Selenium Python, I am trying to enter numbers like “1985225000” to an inputbox. MY problem is that such numbers, when inserted, turn out to be like” 198-522500-0”. Can ...
Soroush Kalantari's user avatar
1 vote
1 answer
138 views

In a web automation code, I am trying to find a web element and write something in it. My code can find the web element but it fails at writing the text in the element by the send_keys method and the ...
Soroush Kalantari's user avatar
0 votes
1 answer
398 views

I am using action chains and lines like the following: actions.click(elementimclickingon).send_keys(Keys.CONTROL + "A").perform() I have subsequent actions in the above line before, like ....
Nakuna's user avatar
  • 3
0 votes
1 answer
464 views

I plan to manually select the target Chrome tab and press the macro button from Excel to use it like an on-screen keyboard. I would like to operate the Chrome browser using only Sendkeys, a standard ...
2053_sh's user avatar
1 vote
1 answer
65 views

from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.by import By from selenium....
Krishnendu Dutta's user avatar
1 vote
0 answers
266 views

The issue I'm dealing with is the unreliability of the SendKeys function. Right now, I'm working on creating a script that opens a Word document, selects "Finish and Merge" -> "Edit ...
Avarsiral's user avatar
2 votes
2 answers
189 views

I have a Python Script to enable/ disable Airplane mode using input simulation which works fine: Win + A : To Open Action Center Right Arrow (twice) : Navigate to Airplane toggle Space : To Press OK ...
Oprex Droid's user avatar
-1 votes
1 answer
214 views

I have a C# code, in which I need to run a very old vendor binary to ASCII conversion program, here is relevant part of my code: C# code with SendKeys.Send "Access denied..." These codes are ...
gdu000's user avatar
  • 1
0 votes
0 answers
37 views

I have a test suite with java+selenium and I have an issue with a payment sandbox. The issue occurs only when I excute the test on VM provided by AWS. I have a login page for the payment and sendKeys(&...
Anca's user avatar
  • 1
-2 votes
1 answer
84 views

I just found some code here. I love the idea of the display (UI) and have been using it to make some compiled fixer for my organization's daily operation. Here is the full code: @if (@CodeSection == @...
Doy Lyster's user avatar
1 vote
1 answer
655 views

I have a VacationCalendar PC that has 2 monitors. I also have 2 excel spreadsheets, a LEFT and a RIGHT. I am wanting to open up the RIGHT spreadsheet and move it over to the RIGHT screen when the ...
TriiKyPandas's user avatar
1 vote
1 answer
57 views

Below is the element details of input field <input name="aadharNumber" placeholder="Enter Aadhaar No." error="[object Object]" maxlength="12" type="text&...
Ajarlinux's user avatar
0 votes
0 answers
41 views

Actually, I am trying to navigate without using click event or function in python as well as JavaScript. I have tried send keys - Keys. RETURN that is working for some elements and showing an error as ...
Krish's user avatar
  • 1
0 votes
2 answers
260 views

I'm using safaridriver, included with Safari 17.3.1 (19617.2.4.11.12). I'm not having problems with the latest versions of Chrome, Edge or Firefox. I have a web page with just a textarea input. If I ...
user22916347's user avatar
0 votes
0 answers
99 views

So I wanted to close toast notification. Press Shift + Win + V move the focus to the notification. Then, Delete to dismiss it I am wondering if C# or VB.net can achieve this without using 3rd party ...
Eric's user avatar
  • 83
0 votes
1 answer
828 views

The following code press the TAB key three times. The following code is okey. SendKeys "{TAB 3}", True How to press Ctrl plus w keys three times? I have tried the following code but it ...
Danny Coleiro's user avatar
2 votes
1 answer
799 views

Following link explains what is the difference between SendKeys wait argument false or true. Wait Optional. Boolean value specifying the wait mode. If False (default), control is returned to the ...
Danny Coleiro's user avatar
1 vote
1 answer
42 views

This is my current code WebElement textarea_click = driver.findElement(By.xpath("//*[@id=\"gvPods_txt_Comment_" + i + "\" ]")); ...
Tejashree Veer's user avatar
0 votes
0 answers
144 views

I have a problem with SendKeys "^s". If I save my csv file with ActiveWorkbook.Save I'm getting an error with another software that uses this csv file to input data to system. Could someone ...
Jakub Vrbka's user avatar
-1 votes
1 answer
235 views

Hi people: I'm trying o automate (Selenium with Java) a method that moves from a row to another (10 times) with the sendKeys. I tried with for cicle, but it's not working: public void ...
nosequeweaponer's user avatar
2 votes
0 answers
112 views

I registered a global hot key for the F3 key in the app. The app simply shows the message "Only pressed F3." when I press F3. But as I keep pressing and holding the F3 key, it shows the ...
Sarper Sözen's user avatar
0 votes
1 answer
232 views

Automating filling in online form in Edge using Selenium within VBA but I am receiving an error message when trying to use the SendKeys for Enter. Note, there is not submit button, Enter is required. ...
Jerry's user avatar
  • 1
0 votes
1 answer
85 views

I have an Excel workbook with business contacts. I need to send emails to some of them. Outlook is in an Enterprise environment with User permissions. I cannot make changes to the Macro or Object ...
Bilbo's user avatar
  • 3
0 votes
1 answer
58 views

I'm currently having to venture into Selenium due to a project. I'm supposed to load a page automatically, log in, click and then fill in a table. Everything works until I fill out the table. My Code: ...
Killig's user avatar
  • 21
0 votes
2 answers
631 views

I'm using selenium python and I have this code, it finds a comment box and then I want to type there a comment. the code finds the comment box but when it tries to type something the code breakes and ...
user avatar
0 votes
1 answer
170 views

I´m trying currently upload a picture with Selenium to a site.I have tried sendkeys(doesnt work because Type: File is missing), autoit(work but I cannot change the Code and Fileurl in Python) and some ...
Avanti Ragazzi's user avatar
0 votes
0 answers
227 views

Im trying to build a code on vba selenium to save a pdf link from a website on edge browser, but i cannot send the "control+s" and "enter" keys to open the "save as" ...
INFOdevelop 's user avatar
0 votes
3 answers
621 views

Doing a simple web browser automation and attempting to enter login information to instacart. Program runs but having difficulty getting send_keys to input text. I'm not sure if my Xpath is incorrect ...
Jake Truong-Jones's user avatar
1 vote
0 answers
130 views

Here is the Excel VBA code I have so far that opens Microsoft Edge: Dim obj As New WebDriver Sub testEdgeAuto() obj.Start "edge", "" obj.Get "https://www.redfin.com" ...
Reyhan Nettles's user avatar
-1 votes
1 answer
51 views

So I have this code: Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.SendKeys "{"}" But VBS says there is a mistake. How can I fix this? I was trying to put it ...
Filip Świątkowski's user avatar
1 vote
1 answer
444 views

How to use the ctrl+s key combination correctly with tampermonkey ? The example code does not work correctly. The alert is displayed, but the key combination is not sent. Where is the error? // ==...
Piotr B's user avatar
  • 11
0 votes
1 answer
2k views

I'm trying to access the "Find & Select" menu in Excel by using SendKeys through VBA. When I am simply in Excel, I can access the "Find & Select" menu via the following ...
ScaredOfRidicule's user avatar
0 votes
0 answers
99 views

I would like to have the possibility to autofill the box on the website and validating it (Click OK) straight from the VBA code. I've inspected the website and the situation looks pretty much like ...
Geographos's user avatar
  • 1,606
0 votes
1 answer
171 views

I have a PowerShell script which I intend to use to open specific csv files in Notepad++ then Search -> Bookmark rows based on one of the columns [Location] = 22102 and copy all bookmarked rows to ...
JimJanes's user avatar
1 vote
0 answers
9 views

drive.find_element(By.NAME("search_query")) search.send_keys("bitcoins") time.sleep(3) I want click the youtube search,then write bitcoin and search it
Aprilful _'s user avatar
-2 votes
2 answers
339 views

Trying to write a simple demo program where keyboard input into the console gets translated to key presses on a target window belonging to some other application process. So if I type the character &...
Farhan Alvi's user avatar
0 votes
1 answer
213 views

I'm attempting to automate a repetitive data-entry task on a webpage. I need to enter text into a series of text fields that appear in a sidebar, which means that I have to click on the visible text ...
user21199645's user avatar
0 votes
2 answers
559 views

From a macro in Excel, I open a .docm Word doc then search for "<>" (the only text on its line) and replace it with a page break. After the page break is inserted, it leaves an empty ...
justin's user avatar
  • 21
0 votes
0 answers
1k views

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:/...
st_user_321122's user avatar
0 votes
1 answer
121 views

I'm tring to simulate pressing the commend FN+DELETE using Selenium and Typescript. But seems like FN doesn't exist in .sendKeys(Key.FN) this.driver.actions().keyDown(Key.FN).sendKeys(Key.DELETE)....
Alex's user avatar
  • 21
0 votes
1 answer
189 views

I'm attempting to automate an action on an Electron/javascript-based game that requires keyboard input. Example: typing "a" is supposed to activate an ability in the game, and I want to ...
ben_makes_stuff's user avatar
0 votes
1 answer
98 views

I am scraping a website using selenium with python. This website has a search engine that allows you to write. When I include the text, before hitting enter, I need to wait some time, otherwise it ...
Nacho Arévalo Evans's user avatar
0 votes
1 answer
1k views

I wanted to pass multiple words in different line on to text box, can anyone help me finding out the solution Expected output : 13456,Teena 12378,Tesa 130987,Jhon
nayansFosgit's user avatar
2 votes
4 answers
1k views

I try to log in to this web page with my credentials. https://www.oddsportal.com/login I am able to get the "username" and "password" input boxes but I am not able to send the data....
daniel2014's user avatar
-1 votes
1 answer
60 views

First I get the value, then I convert it to float to multiply it, but when I send it back as a string to a webpage instead of 0.7795 it sends 7795. Code below: values = driver.find_element(By.XPATH, &...
arg's user avatar
  • 51

1
2 3 4 5
25