Jump to content

Math Problem Solver


Medic873
 Share

Recommended Posts

Okay I cant find the form name of this website...

You can probably see what im trying to do but how can I do this without the form being easy to find to send the data to the feild thank you

#include <IE.au3>

#Include <ScreenCapture.au3>

#include <Excel.au3>

#include "array.au3"

#Include <File.au3>

#include <INet.au3>

$Question = inputbox ("Question", "What is the math problem you would like our software to solve.");

$oIE = _IECreate ("Http://www.wolframalpha.com")

_IELoadWait ($oIE);Waits for webpage to load

$oForm = _IEFormGetObjByName ($oIE, "SignUpForm");Runs the form of the webpage

$Wolframalphaquestionfeild = _IEFormElementGetObjByName ($oForm, "f");Enters the username

_IEFormElementSetValue ($Wolframalphaquestionfeild, $Question);Enters the username

Link to comment
Share on other sites

Try this

#include <IE.au3>

$Question = inputbox ("Question", "What is the math problem you would like our software to solve.");

$oIE = _IECreate ( "http://www.wolframalpha.com/input/?i=" & $Question )
_IELoadWait ($oIE);Waits for webpage to load
; <INPUT id=i maxLength=200 name=i autocapitalize="off" jQuery1284100531187="2">

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...