Search the Community
Showing results for tags 'salesforce'.
-
Hi, I need help performing actions in Salesforce using IE. I used to complete tasks via MouseMove/MouseClick etc. on the Chrome application of SF, but unfortunately this only works for me and not my colleagues due to different positions of things etc. Being unable to get Webdriver UDF or Chromedriver running to interact with the code directly, I chose to look into the IE UDF. ATM I'm trying to tick a specific checkbox in SF which simply allows me to "select all checkboxes" at the same time. Applying the following code on a random website with checkboxes works just fine for me: (in this case selecting cheese checkbox) #include <IE.au3> Local $oIE = _IECreate("http://www.echoecho.com/htmlforms09.htm") Local $oSubmit = _IEGetObjByName($oIE, "option3") _IEAction($oSubmit, "click") _IELoadWait($oIE) But applying it to the Salesforce website it does exactly nothing and responds with these warnings/errors: The script is exactly the same, except for website and the input name tag of the desired checkbox being different. #include <IE.au3> Local $oIE = _IECreate("Corporate Salesforce URL") Local $oSubmit = _IEGetObjByName($oIE, "myPage:myForm:oliListBlock:oliListTable:j_id36") _IEAction($oSubmit, "click") _IELoadWait($oIE) As its working with random websites my guess is that there has to be something done to get it work with SF. Hope the more experienced SF+AutoIt pros can help me out here. Thanks in advance!
- 11 replies
-
- webdriver
- salesforce
-
(and 1 more)
Tagged with:
-
Hi there, I have been manually uploading files to "WorkSpaces" in SalesForce manually which requires many steps. I am looking for ways whether we can use AutoIt to script these activity so that, the script can pickup files from the local or network folder and post them to the "Work Space" in SalesForce. Is this possible? Thanks in advance. Thanks & Regards