Search found 38 matches

by crookedleaf
Wed Jan 23, 2013 3:48 pm
Forum: Q/A
Topic: scrape data tiered
Replies: 8
Views: 18046

Re: scrape data tiered

Thank you so much for the response. When running the "force elements into same row" action tree and setting the Kind to the header (Room 1, Rom 2, etc.), I get the following error message: "Message from webpage: Unknown Runtime Error."
by crookedleaf
Fri Jan 18, 2013 1:27 am
Forum: Q/A
Topic: scrape data tiered
Replies: 8
Views: 18046

scrape data tiered

i'm running into a bit of a problem programming a scrape. the scrape extracts data about reservations people have made with us. i think the problem is when people have more than one room reserved. when there is only one room, the data extracts perfectly. a single room reservation is as seen here: Ca...
by crookedleaf
Thu Dec 27, 2012 7:40 pm
Forum: Q/A
Topic: Navigate URL's character limit
Replies: 3
Views: 8125

Re: Navigate URL's character limit

after deleting the table and recreating it with Memo fields, it does hold the full URL. thank you :D is there any way to change the field types or anything without just deleting the table and recreating it?
by crookedleaf
Wed Dec 19, 2012 7:28 pm
Forum: Q/A
Topic: Navigate URL's character limit
Replies: 3
Views: 8125

Navigate URL's character limit

it seems like I am running out of characters on the Navigate URL's list. Here is the URL i am trying to run (i have x'ed out the domain, but the amount of x's are the same amount of letters) https://www.xxxxxxxxxxxxxxxxxxxxxx.com/ffr/secure/member/reservations/searchpost.do?selectedUnitTypes=STD&sel...
by crookedleaf
Mon Dec 17, 2012 10:25 pm
Forum: Q/A
Topic: Navigate URL and Extract set on a count
Replies: 4
Views: 10142

Re: Navigate URL and Extract set on a count

worked perfect! thank you.
by crookedleaf
Thu Dec 13, 2012 1:30 am
Forum: Q/A
Topic: Navigate URL and Extract set on a count
Replies: 4
Views: 10142

Re: Navigate URL and Extract set on a count

i have temporarily solved the issue by just having the Execute JS process the Logout URL every 6 URLs, and then setup an If/While tree to run the Login URL if the page contains certain text that is unique to the Logout page. But if it's possible to just log out and log back in in the Execute JS comm...
by crookedleaf
Wed Dec 12, 2012 11:45 pm
Forum: Q/A
Topic: Navigate URL and Extract set on a count
Replies: 4
Views: 10142

Re: Navigate URL and Extract set on a count

i've created a "Execute JS" based off something I read in another post, but it is only processing the Login link, and not the Logout, so I must be doing something wrong :/ Here is what I have: var pauseEvery = 6; var waitSeconds = 5; if(Tree.UserData == undefined) Tree.UserData = 0; Tree.UserData++;...
by crookedleaf
Wed Dec 12, 2012 10:11 pm
Forum: Q/A
Topic: Navigate URL and Extract set on a count
Replies: 4
Views: 10142

Navigate URL and Extract set on a count

Subject is a bit complicated, so i'll try to explain this the best I can. I have a scrape that is set to navigate to a list of 500 URL's, give or take, and extract data off each provided URL. What I need to try and do is have it go to only 6 of the URLs, scrape the data off each, then pretty much lo...