iNightfury Posted April 10, 2015 Posted April 10, 2015 Hi, I'm new here I hope you can help me with my problem I want to make a simple tool with "InputBox" to check "url" in Google chrome and search for a text and if it finds it, it shows MsgBox
JohnOne Posted April 10, 2015 Posted April 10, 2015 Have you tried anything at all? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
iNightfury Posted April 10, 2015 Author Posted April 10, 2015 Have you tried anything at all? search() Func search() $a = InetRead ("www.google.com") if StringinStr (BinaryToString($a),"name") Then MsgBox (0,"Sucess","Content Found") Else MsgBox(0,"Error","Content Not Found") EndIf EndFunc but it's not working as it's supposed to
JohnOne Posted April 10, 2015 Posted April 10, 2015 (edited) If you absolutely need to use google chrome, then your task ahead is not a trivial one and you will need to use some UDF's which are capable of automating the browser, for example >IUIAutomation. Your task becomes much simpler if you use Internet explorer and its standard UDF's which you will find in the help file. First, you should expand on "but it's not working as it's supposed to". Edited April 10, 2015 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
iNightfury Posted April 10, 2015 Author Posted April 10, 2015 If you absolutely need to use google chrome, then your task ahead is not a trivial one and you will need to use some UDF's which are capable of automating the browser, for example >IUIAutomation. Your task becomes much simpler if you use Internet explorer and its standard UDF's which you will find in the help file. First, you should expand on "but it's not working as it's supposed to". I just want to perform the task, no matter what the browser is
JohnOne Posted April 10, 2015 Posted April 10, 2015 Explain in detail "the task". AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
iNightfury Posted April 12, 2015 Author Posted April 12, 2015 Explain in detail "the task". I've a long 4 blacklists with different names and different links, I want to put the name that I want to search in the blacklist and it tells me whether it's blacklisted or not and if yes it tells me what the blacklist level but basically I want to make a simple one just tells me whether blacklisted or not I usually use Google chrome but I've no problem to change the browser to perform the task.
junkew Posted April 16, 2015 Posted April 16, 2015 up in the help file you can find basic examples. You just give minimal information on what you try to achieve https://www.autoitscript.com/autoit3/docs/guiref/GUIRef.htm FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
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