Jump to content

Automation of multiple Web pages


Recommended Posts

#include <string.au3>
#include <File.au3>
#include <MsgBoxConstants.au3>
#include <FileConstants.au3>
#include <WinAPIFiles.au3>
#include <Misc.au3>
#include <AutoItConstants.au3>
#include <Date.au3>
#include <IE.au3>
#include<Inet.au3>

Local $oIE = _IECreate("www.google.com",1,1,1,1)
Sleep(2000)
_IELoadWait($oIE)
Sleep(2000)
$o_form = _IEFormGetObjByName($oIE, "f")
$element = _IEFormElementGetObjByName($o_form,"q")
_IEFormElementSetValue($element,"INDIA")
Sleep(2000)
_IEFormSubmit($o_form)
Sleep(2000)
 _IELinkClickByText($oIE, "India - Wikipedia")
 Sleep(3000)
;~  $Set = _IEFormGetObjByName($o_form,"search")
;~  _IEFormElementSetValue($Set,"MAHARASHTRA")
$OIE1 = _IEPropertyGet($oIE, 'locationurl')
_IELoadWait($OIE1)
Sleep(2000)
MsgBox($MB_SYSTEMMODAL,"","New Page",3)
;~ $form = _IEFormGetObjByName($OIE1,"searchform")
;~ $select = _IEFormElementGetObjByName($form,"searchInput")
;~ Sleep(2000)
;~ _IEFormElementSetValue($select,"MAHARASHTRA")


_IELinkClickByText($OIE1,"second-most populous")

Hi all,

I am working on web automation using AutoIT.

But only two or three pages can be automated using AutoIT.

For the further pages the code is not working.

Can anybody help me with the same.

How to Automate multiple web pages....???

Link to comment
Share on other sites

On ‎11‎.‎09‎.‎2017 at 5:12 PM, Danp2 said:

This is the third thread that you have started on the same subject. I tried to assist you in the other two, but you failed to respond essentially abandoning the thread. What's going to be different about this one?

Suggest that you review the prior threads.

Yup....

 _IEAttach() should be used to navigate through multiple web pages....!!!

Thank you...!!!

But its not working for the CRM Web UI.

What should I do

Link to comment
Share on other sites

Quote

What should I do

Panic, cooldown and provide more information. With telling  "But its not working for the CRM Web UI."  you jump into conclusions we cannot follow. What do you mean with your CRM WEB UI. What are spying tools telling you about the page? ...... You omitt zillions of detail to a community that knows a lot on webautomation with AutoIt but does not have a clue on your environment.

Link to comment
Share on other sites

On ‎15‎.‎09‎.‎2017 at 6:26 PM, junkew said:

Panic, cooldown and provide more information. With telling  "But its not working for the CRM Web UI."  you jump into conclusions we cannot follow. What do you mean with your CRM WEB UI. What are spying tools telling you about the page? ...... You omitt zillions of detail to a community that knows a lot on webautomation with AutoIt but does not have a clue on your environment.

 

I am working on the automation of SAP work. There is one website on which I am working.

I have automated first two pages, but when it navigates to third page I am unable to automate it.

 

Edited by VaishnaviBUtpat
Link to comment
Share on other sites

What are tools like AU3INF and Simplespy telling you. See FAQ31 for references

Your definition of "providing more information" is not in sync with mine.

Without information about the html, first browser, 2nd browser, popup, .... its hard to give direction(s)

 

Link to comment
Share on other sites

18 minutes ago, junkew said:

What are tools like AU3INF and Simplespy telling you. See FAQ31 for references

Your definition of "providing more information" is not in sync with mine.

Without information about the html, first browser, 2nd browser, popup, .... its hard to give direction(s)

 

ok thank you...!!!

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...