-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearchData.js
More file actions
71 lines (65 loc) · 1.73 KB
/
searchData.js
File metadata and controls
71 lines (65 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
class SearchData {
constructor(parameters = {}) {
const {
address,
opaAddress,
opaAccount,
opaAccountValue,
opaAddressValue,
parcelId,
parcelDescription,
} = parameters;
this.address = address;
this.opaAddress = opaAddress;
this.opaAccount = opaAccount;
this.opaAccountValue = opaAccountValue;
this.opaAddressValue = opaAddressValue;
this.parcelId = parcelId;
this.parcelDescription = parcelDescription;
}
}
const buildingAddressData = new SearchData({
address: "1234 MARKET ST",
opaAddress: "OPA Address",
opaAccount: "OPA Account #",
opaAccountValue: "883309050",
opaAddressValue: "1234 MARKET ST",
parcelId: "001S070144",
parcelDescription: "CMX-5",
});
const condoAddressData = new SearchData({
address: "220 W WASHINGTON SQ",
opaAddress: "Address",
opaAccount: "OPA Account #",
opaAccountValue: "888057400",
opaAddressValue: "220 W WASHINGTON SQ APT 100220 W WASHINGTON SQ APT 100",
parcelId: "002S100096",
parcelDescription: "RM-4",
});
const pwdAddressData = new SearchData({
address: "5036 HAWTHORNE ST",
opaAddress: "Address",
opaAccount: "OPA Account #",
opaAccountValue: "622250305",
opaAddressValue: "5032-36 HAWTHORNE ST",
parcelId: "089N040106",
parcelDescription: "RSA-5",
});
const dorAddressData = new SearchData({
address: "5669 CHESTNUT ST",
opaAddress: "Parcel Address",
opaAccount: "Map Registry #",
opaAccountValue: "018S030074",
opaAddressValue: "5627-99 CHESTNUT ST",
parcelId: "018S030074",
parcelDescription: "CA-2",
});
module.exports = {
buildingAddressData,
condoAddressData,
pwdAddressData,
dorAddressData,
URL:"https://atlas-dev.phila.gov/",
HEADLESS_MODE: true,
BROWSER:"chrome",
};