Search the Community
Showing results for tags 'save'.
-
I am sorry for posting what is probably a simple question but can't seem to get this to work. I have search for two days and cannot find right 'command'. I have a little bot that goes to a page and generates a profile. The bot then scrolls down the page to the download box. The bot chooses the download button and correct file type. So far so good. A 'Save As' dialog box pops up. All I need it to do it click the 'Save' button for me. (Each file will have a unique name so it is no problem just clicking save.) However, I cannot get my bot to click 'Save'. The bot stops ther
-
Any way to easily save a full website? If done manually you could do it from a web browser.
-
Hi Guys, I am trying to save a file from a pop-up window. The download link opens a new window and has the standard SAVE and CANCEL buttons. See attached. Button has no href or other tags to scrape. Code is <input type="submit" name="stms_exp_btn" value="Export Members" class="button-primary"> Any ideas?
-
It is almost 2016. What is currently the best method for typing a text filename into a windows Save As dialog? Here is my current code: click(<pid=87>,"Left Click","No") wait(.5) change checkbox(<id="rsAddMap">,"Checked") click(<id="rsPhoto">,"Left Click","No") wait(.5) click(<id="rsViewReport">,"Left Click","No") wait for element(<id="download">,30,"Appear") wait(.5) set(#url,$replace($url,"#",""),"Global") set(#pt1,"www.targetsite.com","Global") set(#pt2,$scrape attribute(<tagname="iframe">,"src"),"Global")
-
hi, need to save a lot of images direct from url and save them with there defauld name add list to list(%image url,$list from file("C:\\Users\\admin\\Desktop\\image url list.txt"),"Delete","Global") loop($list total(%image url)) { set(#image name,$next list item(%image url),"Global") plugin command("SocketCommands.dll", "socket container") { plugin command("SocketCommands.dll", "socket download file", $next list item(%image url), "D:\\image\\1.jpg") } } but i want the image to be saved not with 1.jpg but with default name for example: http://www.abc.net.au/news/image/4243
-
I'm creating a bot that goes through a list of URLs in one column, saves the fastest suggested route in google maps to the next column, and then saves a screenshot of the map to the third column. I'm having the hardest time trying to save an image to a table cell. Is there any way to go about this? Any help would be greatly appreciated! Here is my code: navigate("maps.google.com", "Wait") click(<id="d_launch">, "Left Click", "No") create table from file("C:\\Users\\Katelynn\\Desktop\\addresses.txt", &my table) set(#row_num, 0, "Global") clear list(%places) loop($table total ro
-
Hi, I badly need this final code. I need to Merge two list and then save it in a txt file. Like "keyword:number" Format or some sort. Thanks a lot!