RoninEdo 0 Posted April 14, 2019 Hey, i want to make a script which runs in the backround. So i tried ControlClick and Send but I have some problems, hopefully you can help me. I want autoit to click on a textbox in my browser(google chrome) and send a text in this box. But it cant find a way to focus on the textbox. ControlClick works with coordinates but i need controlsend which hasnt coordinates do you have an idea ? thanks Share this post Link to post Share on other sites
BrewManNH 1,304 Posted April 14, 2019 ControlClick's coordinates are the coordinates on the control you're clicking, ControlSend sends to a control regardless of where it is. You're better off using something other than ControlSend/Click if you want to automate something in Chrome. Use one of these. 1 RoninEdo reacted to this If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
junkew 397 Posted April 14, 2019 see faq 31 1 RoninEdo reacted to this FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets Share this post Link to post Share on other sites
RoninEdo 0 Posted April 14, 2019 8 minutes ago, junkew said: see faq 31 to you know how i can copy something from a excel file , but in the backround ? Share this post Link to post Share on other sites
Nine 931 Posted April 14, 2019 Look excel.au3 UDF in help file. Everything you need is in there... 1 RoninEdo reacted to this Not much of a signature, but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
RoninEdo 0 Posted April 14, 2019 DO you have a idea why this "Search box" has no id or name? <input data-v-d9ee07a6="" type="text" placeholder="Design finden" class=""> is it locked or somth ? thank you all for your help Share this post Link to post Share on other sites
junkew 397 Posted April 15, 2019 Most likely as its using a data attribute which identifies uniquely the element. FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets Share this post Link to post Share on other sites
jdelaney 313 Posted April 16, 2019 Loop through input nodes until you find one with a placeholder attribute and your value. IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window. Share this post Link to post Share on other sites