Questions tagged [sendkeys]

A .NET class that sends one or more keystrokes to the active window as if they were typed at the keyboard.

A .NET class that sends one or more keystrokes to the active window as if they were typed at the keyboard.

MSDN Documentation for System.Windows.Forms.SendKeys

1218 questions
-1
votes
3 answers

Powershell newcomer

I am a total new comer to powershell so please forgive me if my question sounds stupid. I found the script below from Yuri Posidelov which I tweaked to activate a process and show the window and send keystrokes to shut down the process which works…
-1
votes
1 answer

Send keys in selenium webdriver with javascript

I can't seem to get the sendKeys function to work. I am using selenium webdriver, and js to send keys. any help would be appreciated. it("Apply text input", async function() { await dashboardPage.run(); let inputs = await…
Mega_maha
  • 17
  • 4
-1
votes
1 answer

Protractor: .sendKeys() converting my text to Uppercase

When I am sending email through protractor to my page it is converting that to uppercase . Page.inputs.email.sendKeys('test@abc.com.au'); Can somebody please help me to know the reason why it is happening and how can I correct it. Thanks
Esha Jain
  • 555
  • 5
  • 16
-1
votes
1 answer

special key Ctrl+A+DEL is in BluePrism not working

I am using surface automation tool thin application (desktop application). In that I need to delete all the text already present in textbox and then write the word. For example, in login page for username textbox I want to delete username's content…
Priya Sangle
  • 19
  • 1
  • 2
  • 8
-1
votes
3 answers

Java: Selenium Webdriver fails to sendKeys() when input auto-formats

I want to fill a input field on a website with selenium webdriver. the input field looks like this:
J Doe
  • 53
  • 7
-1
votes
1 answer

Android sending string from my application to any other applications

I have a service application. I need to send a string to any application (browser, word, ...wherever the keyboard cursor focused). How can I do this? //onReceive of my service onStartCommand... @Override public void onReceive(Context context,…
-1
votes
2 answers

Invoking keyboard keys, through proc - procedure (function) in tcl

In front of the internet, I could only find so far, just the reverse where the key-related event is associated with the front-end button, not the front-end button that invokes a key. Understood ?! Look: #!/usr/bin/env wish button .b1 -text Hello…
Diego Henrique
  • 255
  • 1
  • 16
-1
votes
1 answer

How do I code an automated download in VB?

Right now I'm trying to code a tool that shall be capable of downloading a file from a specific website, beside some other stuff. My current solution is, that I open the website from where the file shall be downloaded in Internet Explorer, wait some…
Kuraiko
  • 45
  • 6
-1
votes
1 answer

python selenium hold keyboard key plus click

I can sendkeys with multiple keyboard keys such as element.send_keys(Keys.COMMAND, Keys.SHIFT, 'H') But can I do something like Keys.COMMAND + click? I tried element.send_keys(Keys.COMMAND) element.click() But this doesn't work. I cannot use…
user2661518
  • 2,677
  • 9
  • 42
  • 79
-1
votes
1 answer

C# Sendkeys slow down / have to press key for sending each line

is it possible to slow the Sendkeys feature down, when I've set that it sends the keys out of a textbox? So I mean that it takes longer / that there is a delay before sending each letter? Ive also thought about if it is possible to have to press a…
-1
votes
1 answer

Selenium web driver sendkeys() not working

I am using sendkeys() to fill the form in my application. When I try to submit the form with all the values in the fields are correct and as per the requirement the form fails to submit. But when i key press the input, the field accepts the values.…
Sarav ACC
  • 1
  • 2
-1
votes
2 answers

Java Selenium looping through website sendKeys combine strings together

I have a for loop that constantly loops back a website to fill out and submit a search box with the next string from a list. For example, if the list contains [abcd, efgh, ijkl....], the first loop would send abcd, the second loop would send efgh…
-1
votes
2 answers

Does Selenium Standalone Server 2.47.0 supports "sendKeys" command?

I'm using Selenium Standalone server 2.47.0, does it support the sendKeys command? Any one used sendKeys command in 2.47.0? Note: I know we can use type command but I need sendKeys to work.
BSalunke
  • 11,499
  • 8
  • 34
  • 68
-1
votes
1 answer

SendKeys with C# PostMessage - Underscore

I'm trying to send an underscore with PostMessage but the best I can get is -, can anyone help here I cannot find the answer anywhere. I send a string to a character loop that gets each one and uses PostMessage to send the key, which works fine for…
Aaron Gibson
  • 1,280
  • 1
  • 21
  • 36
-1
votes
2 answers

Selenium sendKeys with Chrome- Hebrew

I try to use: action.sendKeys("some phrase with a dot, for example: www.google.co.il "); but when i run the program what the action writes is: www*google*co*il the * represent hebrew character. I can disable this only by disabling the hebrew…