Search list > Extract List > Download page

Discussions and Tech Support related to website data extraction, screen scraping and data mining using iMacros.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Search list > Extract List > Download page

Post by ccvle » Fri Feb 02, 2018 5:21 pm

Hello,

I'm new to Imacros and to the community.

I'm trying to figure out the following:

1) Go to this State Gov't website (http://apps.dor.wa.gov/BRD/default.aspx#brdResults)

2) Search an entity (Amazon.com for example) from a list (a table in html format)

3) If the search returned multiple hits, do nothing and move on to the next entity on the list.

4) If the search returned one hit, click on the result.

4) After clicking on the result, the next page will display the entity information (address, account open, etc). Extract the information to a excel spreadsheet

5) download webpage and move on to next entity on the list and repeat.


Eventually, I would need to figure out how to repeat this process for different websites, but I'm hoping if I can get some help with the first one I can try to learn and figure out for others.

Thanks!
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Fri Feb 02, 2018 6:39 pm

ccvle wrote:Hello,

I'm new to Imacros and to the community.

I'm trying to figure out the following:

1) Go to this State Gov't website (http://apps.dor.wa.gov/BRD/default.aspx#brdResults)

2) Search an entity (Amazon.com for example) from a list (a table in html format)

3) If the search returned multiple hits, do nothing and move on to the next entity on the list.

4) If the search returned one hit, click on the result.

4) After clicking on the result, the next page will display the entity information (address, account open, etc). Extract the information to a excel spreadsheet

5) download webpage and move on to next entity on the list and repeat.

Eventually, I would need to figure out how to repeat this process for different websites, but I'm hoping if I can get some help with the first one I can try to learn and figure out for others.

Thanks!
Yeah, well, welcome, but what is your Pb...?, where do you get stuck...?
You don't sound like you've tried anything by yourself, I would think... :roll:

If you are only looking for some kind of "Confirmation" if your Scenario can be implemented using iMacros, then yep, the Answer is YES...!, that's even some typical Usecase for iMacros actually... :D

Now you can install iMacros for the Browser of your Choice, and start reading a bit of the Documentation on how to implement your Scenario, and we can help you if you get "really" stuck somewhere, but nobody will be writing your Script for you, I'm afraid, ah-ah...! :twisted:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Fri Feb 02, 2018 9:13 pm

I'm going to change my question a little bit. I'm new to this so I don't really think I know even where to start on how to write the scripts of what I asked. Instead of searching an entity name from a table in html format, i'm going to use excel to populate the the search term (line 4) and just screen shot the company information page. The challenge I'm having is you can ended up with three possibilities: 1) Only one result returned which then I want to click on that link and screenshot the subsequent page with the company information or 2) if no results or no records found then I want it to skip to next entity search; or 3)If multiple results returned then I also want to skip to next entity search.
The problem is I'm stuck on figuring out how to make line 6 a conditional depending on the search results. Even if one result returned, I'm not sure how to write the script to click on that one result. I think I'm doing something wrong with that super long url in line 6. It looks like it is an unique thats unique to each search (i.e., cant use that link every time).




Line 1 SET !ERRORIGNORE YES
Line 2 TAB T=1
Line 3 URL GOTO=http://apps.dor.wa.gov/BRD/default.aspx
Line 4 TAG POS=1 TYPE=INPUT:TEXT FORM=ID:form1 ATTR=ID:MainContent_SearchControl_txtCriteria CONTENT="123 1st call bail bonds inc"
Line 5 TAG POS=1 TYPE=A ATTR=ID:MainContent_SearchControl_lnkSearch
Line 6 TAG POS=1 TYPE=INPUT:IMAGE FORM=ID:form1 ATTR=NAME:ctl00$MainContent$SearchControl$dgListResults$ctl03$TextImage1&&SRC:http://apps.dor.wa.gov/BRD/Utilities/Gi ... Dm2A%3d%3d
line 7 SAVEAS TYPE=JPEG FOLDER=C:\Users\Desktop\Screenshots FILE=*
line 8 =line 2
line 9 =line 3 (I will use excel to auto populate the search term from a list that i have in excel)
line 10 =line 4
line 11 = line 5
line 12 = line 6
line 13 = line 2
etc
etc
etc
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Fri Feb 02, 2018 9:41 pm

ccvle wrote:I'm going to change my question a little bit. I'm new to this so I don't really think I know even where to start on how to write the scripts of what I asked. Instead of searching an entity name from a table in html format, i'm going to use excel to populate the the search term (line 4) and just screen shot the company information page. The challenge I'm having is you can ended up with three possibilities: 1) Only one result returned which then I want to click on that link and screenshot the subsequent page with the company information or 2) if no results or no records found then I want it to skip to next entity search; or 3)If multiple results returned then I also want to skip to next entity search.
The problem is I'm stuck on figuring out how to make line 6 a conditional depending on the search results. Even if one result returned, I'm not sure how to write the script to click on that one result. I think I'm doing something wrong with that super long url in line 6. It looks like it is an unique thats unique to each search (i.e., cant use that link every time).

Code: Select all

Line 1 SET !ERRORIGNORE YES
Line 2 TAB T=1
Line 3 URL GOTO=http://apps.dor.wa.gov/BRD/default.aspx
Line 4 TAG POS=1 TYPE=INPUT:TEXT FORM=ID:form1 ATTR=ID:MainContent_SearchControl_txtCriteria CONTENT="123 1st call bail bonds inc"
Line 5 TAG POS=1 TYPE=A ATTR=ID:MainContent_SearchControl_lnkSearch
Line 6 TAG POS=1 TYPE=INPUT:IMAGE FORM=ID:form1 ATTR=NAME:ctl00$MainContent$SearchControl$dgListResults$ctl03$TextImage1&&SRC:http://apps.dor.wa.gov/BRD/Utilities/GifImage.aspx?image=PJEofPdiu9Ukvpg4TehtAhoCnxlO2l2qowHVmN4Z3CIm75LyEm7IBAReaKnUPMCoOLc8CN8hve%2foar6acVAJVi0O1AiBRGbd3TmnWF6v5rZNhBuVP2iwExSa2yCKcEaIgmBm5ZpxuLSdueTmAKmXpEUYBpdB18OyTGCg6XTWYxJnSJLEeKx8R73DWWs0kYwauITHLrV%2fV8rBSkYx1pheRx0hGMmBU1VfkD0TtIxEdcb8VGkZz5%2bJd0jPF%2bE1iZZaAYNDrJEzJKL5zRFv7dbdqZmXip7WtpGthGXTrqO2pGEhLnjzMbqTsyEuePMxupOzIS548zG6k7OdRWOyh5Dm2A%3d%3d
line 7 SAVEAS TYPE=JPEG FOLDER=C:\Users\Desktop\Screenshots FILE=*
line 8 =line 2
line 9 =line 3 (I will use excel to auto populate the search term from a list that i have in excel)
line 10 =line 4
line 11 = line 5
line 12 = line 6
line 13 = line 2
etc
etc
etc
OK..., if you are able to post a Script which looks like you've started recording your Actions yourself, very good...!, but that means that you've already installed iMacros, perfect...!, then you start "a bit correctly" and "from the beginning" by first mentioning your exact FCI (read my Sig) for me to read/follow up and do any "Thinking"...:
=> CIM...! :mrgreen:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Fri Feb 02, 2018 10:40 pm

Chrome Version 63.0.3239.132

IMACROS = V12.501.6698

WIN 7 Enterprise

Is the CIM info that you need ?
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Fri Feb 02, 2018 11:11 pm

ccvle wrote:Chrome Version 63.0.3239.132

IMACROS = V12.501.6698

WIN 7 Enterprise

Is the CIM info that you need ?
Euh..., yep..., nearly good, but hum...!:
- "V12.501.6698" looks like an iMB (iMacros Browser) Version, but there is no iMB v12.5 Version, the last Version for iMB is currently v12.0 afaik, there has been no Announcement of an iMB v12.5 Version, and the Wiki doesn't mention such a Version either... :?

- Then you mention "CR63", perfect, but I need also the iMacros for CR Version that you have installed in CR63: v8.4.4 or v10.0.1?
- And if v10.0.1: => Free Add-on or PE (Personal Edition)...? But well, if you have iMB, then it must be PE, unless you only installed iMB 30 days Trial.

- And will you be running your Script in iMB or in CR... (or in both...!)?
=> Because many Commands are not supported by all Browsers/Versions or got broken or only got supported from some specific Version...

And this is why I don't do any "Digging"/"Thinking" for a Thread if your FCI is not mentioned...! :wink:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Sat Feb 03, 2018 2:55 am

Sorry, it is actually the Imarcos Browser that i was using. Not a Chrome broswer. And I gave the wrong version. It is V12.0.501.6698. And yes, it is a 30 day trial. I think I will continue to use the IMacros version since my company doesnt allow Chrome broswer add-ons.
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Sat Feb 03, 2018 5:41 pm

ccvle wrote:Sorry, it is actually the Imarcos Browser that i was using. Not a Chrome broswer. And I gave the wrong version. It is V12.0.501.6698. And yes, it is a 30 day trial. I think I will continue to use the IMacros version since my company doesnt allow Chrome broswer add-ons.
OK, good-good, that clarifies "Things" and we finally have your FCI...! :D

Mini-Rmk, try to pay attention a bit to your Spelling, you still haven't managed to spell "iMacros" even one single time correctly since the beginning of your Thread, hum, and you don't like the Word "Browser" either, ah-ah...! When writing your Script, Runtime Engines are usually "very stupid", you will only get Syntax Errors if you squeeze a Typo in nearly every Command, hum, and JavaScript is even Case-sensitive, just saying... :idea:

Hum, about "my company doesnt allow Chrome bro[sw]er add-ons.", well, iMB after the 30 days Trial becomes $500 I think, with the Enterprise Edition, while the Personal Edition needed for the CR Add-on only costs $100... That could be some kind of "Argument" to let you install some CR Add-on, ah-ah...! And the Add-ons for IE and FF are (still) Free.
Or if you can or are allowed to plug a USB-Stick to your Work-PC/Laptop, you could install Chrome-Portable to which you would be free to install any Add-ons you like... Same with FF. FF is actually much more "powerful" with iMacros than CR, as many Commands are (still) not supported on CR...

>>>

But OK, back to your Thread/Scenario... About 24 hours after you started your Thread, we finally have all Info that should have been included in your OP which could/should have looked a bit like...: (I'm going to re-quote all important parts..., and reformat the Info to make is a bit easier to read... (for me, at least...))
ccvle wrote:FCI:

Code: Select all

iMB v12.0 (Trial)
WIN 7 Enterprise
I'm trying to figure out the following:
1) Go to this State Gov't website (http://apps.dor.wa.gov/BRD/default.aspx#brdResults)
2) Search an entity (Amazon.com for example) from a list (a table in html format)
3) If the search returned multiple hits, do nothing and move on to the next entity on the list.
4) If the search returned one hit, click on the result.
4) After clicking on the result, the next page will display the entity information (address, account open, etc). Extract the information to a excel spreadsheet
5) download webpage and move on to next entity on the list and repeat.

Eventually, I would need to figure out how to repeat this process for different websites, but I'm hoping if I can get some help with the first one I can try to learn and figure out for others.

>>>

I'm going to change my question a little bit. I'm new to this so I don't really think I know even where to start on how to write the scripts of what I asked.
Instead of searching an entity name from a table in html format, i'm going to use excel to populate the the search term (line 4) and just screen shot the company information page.

The challenge I'm having is you can ended up with three possibilities:
- 1) Only one result returned which then I want to click on that link and screenshot the subsequent page with the company information or
- 2) if no results or no records found then I want it to skip to next entity search; or
- 3)If multiple results returned then I also want to skip to next entity search.

The problem is I'm stuck on figuring out how to make line 6 a conditional depending on the search results. Even if one result returned, I'm not sure how to write the script to click on that one result. I think I'm doing something wrong with that super long url in line 6. It looks like it is an unique thats unique to each search (i.e., cant use that link every time).

Code: Select all

Line 1 SET !ERRORIGNORE YES
Line 2 TAB T=1
Line 3 URL GOTO=http://apps.dor.wa.gov/BRD/default.aspx
Line 4 TAG POS=1 TYPE=INPUT:TEXT FORM=ID:form1 ATTR=ID:MainContent_SearchControl_txtCriteria CONTENT="123 1st call bail bonds inc"
Line 5 TAG POS=1 TYPE=A ATTR=ID:MainContent_SearchControl_lnkSearch
Line 6 TAG POS=1 TYPE=INPUT:IMAGE FORM=ID:form1 ATTR=NAME:ctl00$MainContent$SearchControl$dgListResults$ctl03$TextImage1&&SRC:http://apps.dor.wa.gov/BRD/Utilities/GifImage.aspx?image=PJEofPdiu9Ukvpg4TehtAhoCnxlO2l2qowHVmN4Z3CIm75LyEm7IBAReaKnUPMCoOLc8CN8hve%2foar6acVAJVi0O1AiBRGbd3TmnWF6v5rZNhBuVP2iwExSa2yCKcEaIgmBm5ZpxuLSdueTmAKmXpEUYBpdB18OyTGCg6XTWYxJnSJLEeKx8R73DWWs0kYwauITHLrV%2fV8rBSkYx1pheRx0hGMmBU1VfkD0TtIxEdcb8VGkZz5%2bJd0jPF%2bE1iZZaAYNDrJEzJKL5zRFv7dbdqZmXip7WtpGthGXTrqO2pGEhLnjzMbqTsyEuePMxupOzIS548zG6k7OdRWOyh5Dm2A%3d%3d
line 7 SAVEAS TYPE=JPEG FOLDER=C:\Users\Desktop\Screenshots FILE=*
line 8 =line 2
line 9 =line 3 (I will use excel to auto populate the search term from a list that i have in excel)
line 10 =line 4
line 11 = line 5
line 12 = line 6
line 13 = line 2
etc
etc
etc
Hum..., looks like counting until 6 seems to be a "Challenge", ah-ah...! And all the "Line 1 - 13" etc are handy indeed to locate which Line of Code you mean, but not really if sbd else will want to run your Script to have a look at what it does and how it "behaves"...

But OK, now I understand what you want from your Scenario, yep, "typical Usecase for iMacros and Data-Extraction" like I said earlier..., and yep, with a few "mini-Challenges" indeed on how to implement the Functionality that you want... (But nothing very difficult once you'll have read a bit of Documentation..., from the Wiki and from Threads on the Forum where all Commands and "Techniques" that you need are documented...)

So for your 3 Possibilities, you then only want to click on the Result if there is only 1 Result.
Yeah, then you simply need to extract the Nb of Results, either it's displayed directly on that Page..., hum let me check, then I won't need to explain the "or" Case..., and indeed it is, if I input your "123 1st call bail bonds inc" in the 'Business or owner name' [Begins with] Input Field, then I get some "1 to 1 of 1 results" where the Nb of Results is clearly mentioned.

Well, in this case, you don't even need to extract anything to conditionally compute anything to achieve the further Conditional Behaviour that you want. Explanation and Solution in the following Thread for example:
- "IF" conditional, the mother of all problems ..... help?

This (old(er)) Thread, recently revived by some other (new) User, is "good Reading" for you, + the Thread I refer to in my last Post in that Thread on Page_2; if you read that Thread + the Thread I refer to and all the Threads I've listed in that 2nd Thread, then you'll know absolutely everything you ever wanted to know about "Conditional Behaviour" in iMacros in pure '.iim' but were afraid to ask, ah-ah...!
They answer all your Qt's and give you all the Techniques you need for your Scenario, including the Answer to your Line_6 and the "long unique URL"... 8)

Well..., happy Reading then, and good "luck"...! :wink:
And come back if you "really" get stuck somewhere, and/or to post your final Script once you'll have gotten it to work, that can always help other Users and I will probably be able to "improve" and "tune" it a bit...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Sun Feb 04, 2018 6:34 am

i'm making some progress with my IMacros scripts. I'm able to get to the final page with the company information and take a screenshot of it. The question I have is the company information looks like it is displayed as a picture file (i can't copy and paste anything) I also tried to view the source but don't see any of the company information in there. Are there any threads that you can point me to on how to extract the data from something like that ?
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Sun Feb 04, 2018 8:42 am

ccvle wrote:i'm making some progress with my IMacros scripts. I'm able to get to the final page with the company information and take a screenshot of it. The question I have is the company information looks like it is displayed as a picture file (i can't copy and paste anything) I also tried to view the source but don't see any of the company information in there. Are there any threads that you can point me to on how to extract the data from something like that ?
Hum..., I was thinking about you actually.., I may sound and act a bit to educate "People" but I guess I have some kind of a "soft" Heart, oops...!

But hum, first thing I would say is: Post your current Script, no Use I go in some "If then if else or ok in this case do that or else do that...", pfff whatever... :roll:
Hum, I thought you would have understood that from my previous Answers... [=> -1 in my "Appreciation", don't worry you still have a +2 Credit until I stop answering your Qt's/Threads if you keep asking "stupid" Qt's, oops...!] Oops, behave I would say, that was a "Killer" I would think...! :shock:

Hum, and when I say/said "stupid", it actually came from:
'random[stupid|funny|useless]', => so I didn't really mean "funny", the Random Generator decided...! :oops: :wink:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Sun Feb 04, 2018 9:00 am

Yeah, well, meaning that your Post was completely vague..., nearly a Joke, sorry...! :roll:

=> You need to be much-much-much more precise with you own Thinking, and tell that Ex of yours to leave you alone [until your Script works fine of course]...!!

But hum, some stupid Qt, What Company do you work for...?, What kind of Job do you have...?
Don't worry, there is no "stupid" Answer, ah-ah...!, I'm just a DJ myself IRL, I only care about Music in my "real Life", iMacros is just for Fun, AH-AH-AH-AH...! :twisted:

And if you have to choose, answer the Tech Qt's, the Social Qt's are just for Fun... :wink:
[Obvious I would think, this is a Tech Forum...!]
i'm making some progress with my IMacros scripts.
The "wise Man" said: We will measure your "Progress" on the Script you will post.... :)
Hum, I'm the "Wise Man" I guess and I'm wondering more and more what kind of Work you do @OP...?
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Search list > Extract List > Download page

Post by chivracq » Sun Feb 04, 2018 9:40 am

Yeah, sorry previous 2 Posts meant a bit as Jokes...
=> The Random Generator is Funny/Stupid/Useless...!? => Euh, oops...!? :?

=> Simply post your Script then we can talk and see how far you came, I have lots of Stories about Frogs and/or Snails if you prefer...!?? :mrgreen:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Sun Feb 04, 2018 2:47 pm

My current script is posted below. But my question is not really about my script. I'm able to auto search, click on the result and get to the final page with the company information. However, the company profile information looks like it is displayed as in gif format. See example -> http://apps.dor.wa.gov/BRD/Utilities/Br ... W1D9J&rsp=


SET !ERRORIGNORE YES
TAB T=1
URL GOTO=http://apps.dor.wa.gov/BRD/default.aspx
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:form1 ATTR=ID:MainContent_SearchControl_txtCriteria CONTENT="123 1ST Call Bail Bonds INC"
TAG POS=1 TYPE=A ATTR=ID:MainContent_SearchControl_lnkSearch
TAG POS=1 TYPE=INPUT:IMAGE ATTR=NAME:ctl00$MainContent$SearchControl$dgListResults$ctl03$TextImage1
SAVEAS TYPE=PNG FOLDER=C:\Users\Desktop\Screenshots\ FILE="123 1ST Call Bail Bonds INC"
Last edited by ccvle on Sun Feb 04, 2018 2:49 pm, edited 1 time in total.
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Sun Feb 04, 2018 2:48 pm

Here is the full source code of that last page with the company information .




<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta name="viewport" content="width=device-width, initial-scale=1" /><title>
Lookup Business Information
</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/master.css" />
<link rel="stylesheet" href="css/brd.css" />
</head>
<body>
<form method="post" action="./default.aspx" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="A+mFbjXZhb7rejjTPhoW+bnTihto4owFaLG+9LhHYQmXHuXO6F99vMKgpUd6SRYDSMYjHOFRJT/0Fq41aK4+CtfQISHa7B4NNa7a6a/AokHGH1im78mYZBWgauLqkH0gVLTtvB/ou4FEElSlaP2BXbGdAy+YoRbm4Uj5cRi1zWbSkSHsm+AZ22+S5L9DT9R5pS5TFZ/jn6qglt7/yz/uAVnFnis1wAIvR5cJPSt8q+nr9h5IeWcMtzJ1Y6JttY/h2vhO3HEHRnOZD1rHGc5q5XLuIfDaxSaMo/fM5RgI5rU/W+d231MAJ2BfBiP181rJSzUhYCwONUSRWSHc2oUd2gYrBk8oSdX+Vg9x4ygqNTxzTXxQcJOa3UVBF6tYcjzpcZnS5d59jA80fjooQ9t3Cg9FzMrZd08W+gIqkuDBd1PmPdDMe/hQXucXwhNvGylSHNi3VZlbmTwGsj3oDZnkCzvX4xLogHDMSTrguEv70ZCDt7Xn9BoI/DCnWb/PeC+adkuQU8OUfDYK2IQEvrJ5iIJfnVKPlQMSjxv7ym1geFb2qqjbt9SBuoE45aP4miNrCl2TGdGFVEfTzTkVDNwKYqcPpodzehxluZArCFCvyzJ/rfwzpHVwBBdb7WSKOBMYKamH1Zknc9nmrS/U3/wXL6vsBbkiaXkZ95xOB8/FhWR9i5LU9Xya88u2x+/zWJgi8t4timIDQwECIn89Nmpph50vCnmvofn8kFlJOhd5AcgZIqQQykkKxgpJtNwh0D4wow30uSfDOeFz8sXYVJixK6eBKpCLqKIQE5Xcaugww9hqWQU4zgfGiTiMkErd8Htu3E1UWRGdWYDc0XQmC5+7WxzzJjpzVs7LbEdbhapqW50hCKHm51mzJLxLVWV++15aJtqu9xmMngxrOdvIuI2CbPU5Fom4juI6im+cJuvFqIHecrMixs3i0ydVcweEDcTIeNHtmV2CxcTXeQmV2eWHrBuqAJfboII9rg+P6WdVszBzdgrUWpzpn4FfeeEyMqhClvqCfNkwWcGkkUbmpDvkxgmiVHuGkSTF3Tocjjjf0o5MGSxoJeHLrqkCw2am9QvbqnPuxQQf2/y7LxhYQ1nF13fHjW5JArsz7gq3xkZKgge4ufTrEesev9zMdjl6kwb5Ts+/08f1fRDykAyaEDe1WhDaQIq0TnWwQ2OQzvm+YjVBXkb8L9/hr9dYfO0YA/rk31c9MZKpcjDN/bq8lu8x8zb4JMFPLsMNXbIDoYn71dhoj4mjUjH15V6FpZ1wUI6ab7fibLZO0OZFgCT6KLlkcC14kBnMWLbyYj4e427xfCe1o6BVO8aR0i6xZ93ZmsAi731frboiA1eSQ6o1B/hnGERjEg5gPYjbtEsRwuPeXDxR1qvdyEtIzGcHiXn+EZkGBtBypj+6YKSiu9tpLkSGC6j+WdvLg+frn21vTgVGz0weX6q5ogeokzh3ctsjV+NuQ31cOzICulfqWQCymHcyx+vdpti1+NguIGr33UvT0l/fhRIMNUIzAz55rLwdLzTBrkaSFuYNTcweijpVFhHNXWUalNaz7QIKV2dX8m9UjbM95+x8yZsv/Qn06vqI39U6y5jd4rZPHkUpZOr7HZiIXtT0K/8cRNDuH3P1aSWHvOcp0Nx+1fXb2bYG2WDIz29Z89GuwQ==" />
</div>

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>


<script src="/BRD/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZO2qnHC0dZbS7lt4UbjWKfsH9VhZ06wn2tWzASfS6QQxfyM8gQ2&t=636414544201228773" type="text/javascript"></script>

<script language=javascript>function Name() {if (document.getElementById('MainContent_SearchControl_rdoUBITRA').checked|| document.getElementById('MainContent_SearchControl_rdoRSPNumber').checked){document.getElementById('MainContent_SearchControl_txtUBITRA').value='';document.getElementById('MainContent_SearchControl_txtRSPNumber').value='';document.getElementById('MainContent_SearchControl_rdoBusinessOrOwnerName').checked=true;document.getElementById('MainContent_SearchControl_rdoRSPNumber').checked=false;document.getElementById('MainContent_SearchControl_rdoUBITRA').checked=false;}}</script><script language=javascript>function UBI() {if (document.getElementById('MainContent_SearchControl_rdoBusinessOrOwnerName').checked || document.getElementById('MainContent_SearchControl_rdoRSPNumber').checked){document.getElementById('MainContent_SearchControl_txtCriteria').value='';document.getElementById('MainContent_SearchControl_txtCity').value='';document.getElementById('MainContent_SearchControl_txtRSPNumber').value='';document.getElementById('MainContent_SearchControl_rdoUBITRA').checked=true;document.getElementById('MainContent_SearchControl_rdoRSPNumber').checked=false;document.getElementById('MainContent_SearchControl_rdoBusinessOrOwnerName').checked=false;}}</script><script language=javascript>function RSP() {if (document.getElementById('MainContent_SearchControl_rdoUBITRA').checked|| document.getElementById('MainContent_SearchControl_rdoBusinessOrOwnerName').checked){document.getElementById('MainContent_SearchControl_txtCriteria').value='';document.getElementById('MainContent_SearchControl_txtCity').value='';document.getElementById('MainContent_SearchControl_txtUBITRA').value='';document.getElementById('MainContent_SearchControl_rdoRSPNumber').checked=true;document.getElementById('MainContent_SearchControl_rdoBusinessOrOwnerName').checked=false;document.getElementById('MainContent_SearchControl_rdoUBITRA').checked=false;}}</script>
<div class="aspNetHidden">

<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="9CD75CFB" />
<input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="QUTbpk4IajPLmbA5OX51k72AdQNIY8ohBvx8SwVaI-jjOotySRGSvlAOYDbQUmXIRJn85YuOEuOwpdpNjz0IuPBxfxE1" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="wmQAg3Pn1rty2Njfo3myeM5Iaapd564s3bB7UFh8miKaDj17AllvaP2+N1Y7u2DU7SHg0J5iqAXQYqCCr2t7nl5PCeV7/LgxwE+OWZd7Cp88ZiVy" />
</div>
<div id="pageWrap" class="container-fluid">

<div class="page-header">
<a href="http://dor.wa.gov/">
<img src="Images/DOR_Logo_2.png" /></a>
</div>

<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="pull-left navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="http://dor.wa.gov/">DOR Home</a></li>
<li><a href="Default.aspx">Business Lookup</a></li>
<li><a href="SearchTips.aspx">Search Tips</a></li>
</ul>
</div>
</div>

<div class="background">
<div id="backgroundImage"></div>
<div id="contentWrap" class="row body-content">
<div id="content" class="col-xs-12">





<div id="MainContent_SearchControl_pnlInfo">


<div class="row">
<div class="col-xs-12 text-center">

<p>
<a id="MainContent_SearchControl_lnkListResults" class="btn btn-primary btn-main" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContent$SearchControl$lnkListResults", "", false, "", "/BRD/default.aspx#brdResults", false, true))">Back to search results</a>
</p>
</div>
</div>

<div class="row">
<div class="col-xs-12 text-center">
<img style="border:black 1px solid;" alt="Business registration information" src="Utilities/BrdImagePage.aspx?tra=lXxIVwXs13m4fgI9kywUnc9DYN6W1D9J&rsp=" />
<p>
<span id="MainContent_SearchControl_lblNameCityResellerMsg" style="display:inline-block;width:60%;">If you are unable to find the reseller permit you are looking for, try searching by tax registration/UBI number.</span>
</p>
</div>
</div>

</div>



</div>
</div>
</div>

<footer class="footer text-center">
<span class="text-muted">Working together to fund Washington's future</span>
</footer>
</div>

</form>
<script src="Scripts/jquery-1.12.3.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
<script src="Scripts/master.js"></script>

<script src="Scripts/brd.js"></script>

</body>
</html>
ccvle
Posts: 13
Joined: Fri Feb 02, 2018 4:45 pm

Re: Search list > Extract List > Download page

Post by ccvle » Sun Feb 04, 2018 3:04 pm

I guess my question is 1) is the company profile information truly in gif format ? If so, is the gif picture generated from a master copy that is saved on https://ccfs.sos.wa.gov website (not sure if this question makes sense). Or is the gif generated by first "pulling the company information" (e.g., account opened, UIB ID, Entity Type, Mailing address,etc) then saving the completed profile as a gif.
Post Reply