Jump to content

dangkhoa9xset

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dangkhoa9xset's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. anyone help me send "." to these fields? please
  2. $sInput0 = _FFObjGet("_60f178-field","class",0) ; returns a string - no object! $sInput1 = _FFObjGet("_60f178-field","class",1) $sInput2 = _FFObjGet("_60f178-field","class",2) If @error = $_FF_ERROR_Success Then _FFSendReact($sInput0, "autoit") _FFSendReact($sInput1, "autoit@gmail.com") _FFSendReact($sInput2, "autoit") EndIf I have done the first requirement but I can't send "." character.
  3. It works perfectly! thanks, sir. One two things: 1. How I choose another field because of the same class? 2. What I have to do to select a combo box? I'm a newbie, please help me. Thanks a lot.
  4. Hello, I'm trying to fill objects like in the page below in code but it has written in PHP language and WordPess source. It doesn't work right, it just fills above the textbox and when I click on other objects the text has gone away. Help me fill it and choose the item in the combo box, please! Here is my AutoIt code #include <FF V0.6.0.1b-15.au3> $sURL = "https://www.grammarly.com/signup?breadcrumbs=true&install=true" _FFConnect() If _FFIsConnected() Then _FFOpenURL($sURL) $sInput = _FFObjGet("_60f178-field", "class") ; returns a string - no object! _FFObj($sInput, "value", "autoit") ;_FFSetValue("mmmmmm", "txtName", "id") Else MsgBox(0,"Error:", "Can't connnect to FireFox") EndIf Here is PHP code <input type="name" data-qa="txtName" maxlength="100" class="_60f178-field" value="">
×
×
  • Create New...