Jump to content

Search the Community

Showing results for tags 'test'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 4 results

  1. I want to save some tests (about one thousand tests totally) from a quiz website to a text file. The test page is a simple one, it contains: 1) The questions; they are inside the <p class="qw">...</p> 2) 5 choices; they are radio buttons id ="a1", "b1" ... When I click a radio for a choice, if correct, the background of it will turn green, if wrong, it will turn red, and the correct answer will turn green. What I need to get is the correct answer. So when I click an answer, no matter right or wrong, the test will automatically go to the next question in about 3 or 4 seconds (I don't know exactly how many seconds). So what I want to save is: Questions choice 1; choice 2; choice 3; choice 4; choice 5; correct answer Then next question... I have limited knowledge of AutoIt, I have check the IE UDFs, but I don't know where to start. Especially I don't know how to do since the test will to go next item automatically. Please give me some hints. Thank you very much.
  2. hi! i made the basic native arduino functions in autoit to control it trougth the serial port. it could be interesting for too many people you can find the codes here in my blog there are some more codes using arduino and autoit too xapus.blogspot.com
  3. Hi everyone, I was just wondering if it is possible to manipulate a window so that it isn't responding. I just need this for testing purposes (a little app that checks if the selected window is still responding) Also i think i can remember a function called _WinAPI_IsHungApp() or something along those lines. Correct me if im wrong. The App that would check if the window is still responding would use the SendMessageTimeout function (https://msdn.microsoft.com/de-de/library/windows/desktop/ms644952(v=vs.85).aspx) or the built-in _SendMessage() function to send the "WM_NULL" message and then get a response or something like that? I dont quite know what the "WM_NULL" message does to the Window but thats why i would like to have a hung up testing window.
  4. so i am making a spam script wich basically keeps sending the text you tell it to, this is my script: while 1=1 hotkeyset ("a","spam") hotkeyset("s","stop") wend func spam () while 1=1 send ("hoi :)") send ("{enter}") WEnd EndFunc func stop () msgbox(1,"stop","hij is gestopt") EndFunc as you may be able to read once you hit A it starts and once you hit S it sends you a msbox so it stops until you click ok but it only sends hoi and i want the user to be able to input the text they want it to spam using a gui so when you type hellooooo in it it will spam that can someone please tell me how to do this i am kind of a noob heheh but i wanna learn this so please explain in normal english xD thanks, dragonheurt ps: the user defined text such as the msbox text are in dutch.
×
×
  • Create New...