RoninEdo Posted April 14, 2019 Share 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 Link to comment Share on other sites More sharing options...
BrewManNH Posted April 14, 2019 Share 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. RoninEdo 1 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 Link to comment Share on other sites More sharing options...
junkew Posted April 14, 2019 Share Posted April 14, 2019 see faq 31 RoninEdo 1 FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets Link to comment Share on other sites More sharing options...
RoninEdo Posted April 14, 2019 Author Share 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 ? Link to comment Share on other sites More sharing options...
Nine Posted April 14, 2019 Share Posted April 14, 2019 Look excel.au3 UDF in help file. Everything you need is in there... RoninEdo 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
RoninEdo Posted April 14, 2019 Author Share 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 Link to comment Share on other sites More sharing options...
junkew Posted April 15, 2019 Share 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 Link to comment Share on other sites More sharing options...
jdelaney Posted April 16, 2019 Share 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now