Internet Explorer Automation

Can anyone suggest any suggestions for "something" that the end user can use to build macros that automate some forms of CRM in Internet Explorer?

  • I was originally going to offer iMacro, but then I found out (i) they only have Internet Explorer and
    (ii) make things even worse, this is version 6: - (
  • it should be pretty simple so i can't offer something like WATIN
  • but the forms on the page are not very complicated: enter the text, select from the list, click the submit button

Cheers, SteveC.

+3
source share
8 answers
+1
+3
+2

Powershell. :

    $ie = new-object -com "InternetExplorer.Application"
    $ie.visible = $true
    $ie.navigate2("www.myweb.com")
    $doc = $ie.Document
    $input1 = $doc.getElementById("username")
    $input1.value = "user"
    $input2 = $doc.getElementById("password")
    $input2.value = "pwd"
    $button = $doc.getElementById("submit")
    $button.click()
+2

javascript . , , JScript.

If you want to automate outside the HTML realm, you will need to use COM Automation .

+1
source

How about RoboForm ?

+1
source

If you can switch to Firefox at some point, I highly recommend these tools. Good luck though.

+1
source

Source: https://habr.com/ru/post/1704877/


All Articles