├── .gitignore
├── Dockerfile
├── LICENSE
├── README.md
├── client
├── package-lock.json
├── package.json
└── test.js
├── run.sh
└── startAppium.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM ubuntu:latest
2 | # setup libimobile device, usbmuxd and some tools
3 | RUN apt-get update && apt-get -y install unzip wget curl libimobiledevice-utils libimobiledevice6 usbmuxd
4 | # grab go-iOS from github
5 | RUN wget https://github.com/danielpaulus/go-ios/releases/latest/download/go-ios-linux.zip
6 | RUN unzip go-ios-linux.zip
7 | # set up nvm and add a little hack so installing appium will work as the root user
8 | RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
9 | RUN export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \
10 | . "$NVM_DIR/nvm.sh" && nvm install 14 && \
11 | npm config set user 0 && npm config set unsafe-perm true && npm install -g appium
12 | COPY startAppium.sh /
13 | ENTRYPOINT ["/bin/bash","-c","/startAppium.sh"]
14 |
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published
637 | by the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ios-appium-on-linux
2 |
3 | Run appium for iOS devices on Linux
4 |
5 | 1. Install WebDriverAgent on your iOS device using Xcode, then plug the device into your Linux box
6 | 2. Install usbmuxd on your linux box `apt install usbmuxd` and run it `sudo usbmuxd&`
7 | 3. Clone this repo on the Linux box
8 | 4. Run: `docker build -t ios-appium-on-linux .`
9 | 5. Run: `./run.sh ios-appium-on-linux` to start the container
10 | 6. Run: `docker exec CONTAINER_ID /ios runwda` to start WebDriverAgent
11 | 7. Now you can run any appium script on the linux box, f.ex. try `node client/test.js` to try the script included in this repo.
12 |
--------------------------------------------------------------------------------
/client/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "client",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@babel/runtime": {
8 | "version": "7.13.10",
9 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz",
10 | "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==",
11 | "requires": {
12 | "regenerator-runtime": "^0.13.4"
13 | }
14 | },
15 | "@babel/runtime-corejs3": {
16 | "version": "7.13.10",
17 | "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz",
18 | "integrity": "sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==",
19 | "requires": {
20 | "core-js-pure": "^3.0.0",
21 | "regenerator-runtime": "^0.13.4"
22 | }
23 | },
24 | "@sindresorhus/is": {
25 | "version": "4.0.0",
26 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz",
27 | "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ=="
28 | },
29 | "@szmarczak/http-timer": {
30 | "version": "4.0.5",
31 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
32 | "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
33 | "requires": {
34 | "defer-to-connect": "^2.0.0"
35 | }
36 | },
37 | "@types/aria-query": {
38 | "version": "4.2.1",
39 | "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz",
40 | "integrity": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg=="
41 | },
42 | "@types/cacheable-request": {
43 | "version": "6.0.1",
44 | "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
45 | "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
46 | "requires": {
47 | "@types/http-cache-semantics": "*",
48 | "@types/keyv": "*",
49 | "@types/node": "*",
50 | "@types/responselike": "*"
51 | }
52 | },
53 | "@types/http-cache-semantics": {
54 | "version": "4.0.0",
55 | "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
56 | "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A=="
57 | },
58 | "@types/keyv": {
59 | "version": "3.1.1",
60 | "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
61 | "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
62 | "requires": {
63 | "@types/node": "*"
64 | }
65 | },
66 | "@types/node": {
67 | "version": "14.14.37",
68 | "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz",
69 | "integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw=="
70 | },
71 | "@types/responselike": {
72 | "version": "1.0.0",
73 | "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
74 | "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
75 | "requires": {
76 | "@types/node": "*"
77 | }
78 | },
79 | "@types/which": {
80 | "version": "1.3.2",
81 | "resolved": "https://registry.npmjs.org/@types/which/-/which-1.3.2.tgz",
82 | "integrity": "sha512-8oDqyLC7eD4HM307boe2QWKyuzdzWBj56xI/imSl2cpL+U3tCMaTAkMJ4ee5JBZ/FsOJlvRGeIShiZDAl1qERA=="
83 | },
84 | "@types/yauzl": {
85 | "version": "2.9.1",
86 | "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz",
87 | "integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==",
88 | "optional": true,
89 | "requires": {
90 | "@types/node": "*"
91 | }
92 | },
93 | "@wdio/config": {
94 | "version": "7.2.1",
95 | "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.2.1.tgz",
96 | "integrity": "sha512-AJElmOz/MHilUKChvJZJ8kyCXgyPpNEgSAglJJNizrBau4wbj9xblze5vtnn/psksjiGr0bld0xYZnWNGc9eDw==",
97 | "requires": {
98 | "@wdio/logger": "7.0.0",
99 | "@wdio/types": "7.2.1",
100 | "deepmerge": "^4.0.0",
101 | "glob": "^7.1.2"
102 | }
103 | },
104 | "@wdio/logger": {
105 | "version": "7.0.0",
106 | "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-7.0.0.tgz",
107 | "integrity": "sha512-P3inCmtc0ms1vnx3v25+U6ccD2dkiuBhaJwmIWPwSbQn8cNQ5AcQIbRWMbnzFHbJ/jSrVBnlwmUArW7L02Zpeg==",
108 | "requires": {
109 | "chalk": "^4.0.0",
110 | "loglevel": "^1.6.0",
111 | "loglevel-plugin-prefix": "^0.8.4",
112 | "strip-ansi": "^6.0.0"
113 | }
114 | },
115 | "@wdio/protocols": {
116 | "version": "7.1.1",
117 | "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-7.1.1.tgz",
118 | "integrity": "sha512-JLwmuQcTsewP2z4DZ2J9mi+uTuVOzFeWMbbEwNjxKbXfD2zi+TGIarMkETGyW0EtQtVscQtbZcqdkvBPEye8iA=="
119 | },
120 | "@wdio/repl": {
121 | "version": "7.2.1",
122 | "resolved": "https://registry.npmjs.org/@wdio/repl/-/repl-7.2.1.tgz",
123 | "integrity": "sha512-mbXkSXP1DEbhNTUdpgL/h/dpnU+I9Og8FodeBN6jtYTOiv15NgUlMf50Sz/dP6GFrPT0YTckFyoXvhBjda8RQA==",
124 | "requires": {
125 | "@wdio/utils": "7.2.1"
126 | }
127 | },
128 | "@wdio/types": {
129 | "version": "7.2.1",
130 | "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.2.1.tgz",
131 | "integrity": "sha512-05+nxO2I/9asQvjgTT2ZteDi7PguAruoOw1Vu8zAVqE+yP5YQxW1CX3galRost8UlQ6Vft/RgmsYLabdxJzzag==",
132 | "requires": {
133 | "got": "^11.8.1"
134 | }
135 | },
136 | "@wdio/utils": {
137 | "version": "7.2.1",
138 | "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-7.2.1.tgz",
139 | "integrity": "sha512-SRi+zQ8h32TQz2yrqTWgEe+SLGFHCTDPmK5YiGth4SM3JshR6WhuPoxFFyQfmcYOSYCy9mpvlk+S1Ao34BPvZw==",
140 | "requires": {
141 | "@wdio/logger": "7.0.0",
142 | "@wdio/types": "7.2.1"
143 | }
144 | },
145 | "agent-base": {
146 | "version": "6.0.2",
147 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
148 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
149 | "requires": {
150 | "debug": "4"
151 | },
152 | "dependencies": {
153 | "debug": {
154 | "version": "4.3.1",
155 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
156 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
157 | "requires": {
158 | "ms": "2.1.2"
159 | }
160 | },
161 | "ms": {
162 | "version": "2.1.2",
163 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
164 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
165 | }
166 | }
167 | },
168 | "ansi-regex": {
169 | "version": "5.0.0",
170 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
171 | "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
172 | },
173 | "ansi-styles": {
174 | "version": "4.3.0",
175 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
176 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
177 | "requires": {
178 | "color-convert": "^2.0.1"
179 | }
180 | },
181 | "archiver": {
182 | "version": "5.3.0",
183 | "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.0.tgz",
184 | "integrity": "sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg==",
185 | "requires": {
186 | "archiver-utils": "^2.1.0",
187 | "async": "^3.2.0",
188 | "buffer-crc32": "^0.2.1",
189 | "readable-stream": "^3.6.0",
190 | "readdir-glob": "^1.0.0",
191 | "tar-stream": "^2.2.0",
192 | "zip-stream": "^4.1.0"
193 | }
194 | },
195 | "archiver-utils": {
196 | "version": "2.1.0",
197 | "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz",
198 | "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
199 | "requires": {
200 | "glob": "^7.1.4",
201 | "graceful-fs": "^4.2.0",
202 | "lazystream": "^1.0.0",
203 | "lodash.defaults": "^4.2.0",
204 | "lodash.difference": "^4.5.0",
205 | "lodash.flatten": "^4.4.0",
206 | "lodash.isplainobject": "^4.0.6",
207 | "lodash.union": "^4.6.0",
208 | "normalize-path": "^3.0.0",
209 | "readable-stream": "^2.0.0"
210 | },
211 | "dependencies": {
212 | "readable-stream": {
213 | "version": "2.3.7",
214 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
215 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
216 | "requires": {
217 | "core-util-is": "~1.0.0",
218 | "inherits": "~2.0.3",
219 | "isarray": "~1.0.0",
220 | "process-nextick-args": "~2.0.0",
221 | "safe-buffer": "~5.1.1",
222 | "string_decoder": "~1.1.1",
223 | "util-deprecate": "~1.0.1"
224 | }
225 | }
226 | }
227 | },
228 | "aria-query": {
229 | "version": "4.2.2",
230 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
231 | "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
232 | "requires": {
233 | "@babel/runtime": "^7.10.2",
234 | "@babel/runtime-corejs3": "^7.10.2"
235 | }
236 | },
237 | "async": {
238 | "version": "3.2.0",
239 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz",
240 | "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="
241 | },
242 | "at-least-node": {
243 | "version": "1.0.0",
244 | "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
245 | "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="
246 | },
247 | "atob": {
248 | "version": "2.1.2",
249 | "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
250 | "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
251 | },
252 | "balanced-match": {
253 | "version": "1.0.0",
254 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
255 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
256 | },
257 | "base64-js": {
258 | "version": "1.5.1",
259 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
260 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
261 | },
262 | "bl": {
263 | "version": "4.1.0",
264 | "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
265 | "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
266 | "requires": {
267 | "buffer": "^5.5.0",
268 | "inherits": "^2.0.4",
269 | "readable-stream": "^3.4.0"
270 | }
271 | },
272 | "brace-expansion": {
273 | "version": "1.1.11",
274 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
275 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
276 | "requires": {
277 | "balanced-match": "^1.0.0",
278 | "concat-map": "0.0.1"
279 | }
280 | },
281 | "buffer": {
282 | "version": "5.7.1",
283 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
284 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
285 | "requires": {
286 | "base64-js": "^1.3.1",
287 | "ieee754": "^1.1.13"
288 | }
289 | },
290 | "buffer-crc32": {
291 | "version": "0.2.13",
292 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
293 | "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
294 | },
295 | "cacheable-lookup": {
296 | "version": "5.0.4",
297 | "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz",
298 | "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA=="
299 | },
300 | "cacheable-request": {
301 | "version": "7.0.1",
302 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz",
303 | "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==",
304 | "requires": {
305 | "clone-response": "^1.0.2",
306 | "get-stream": "^5.1.0",
307 | "http-cache-semantics": "^4.0.0",
308 | "keyv": "^4.0.0",
309 | "lowercase-keys": "^2.0.0",
310 | "normalize-url": "^4.1.0",
311 | "responselike": "^2.0.0"
312 | }
313 | },
314 | "chalk": {
315 | "version": "4.1.0",
316 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
317 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
318 | "requires": {
319 | "ansi-styles": "^4.1.0",
320 | "supports-color": "^7.1.0"
321 | }
322 | },
323 | "chownr": {
324 | "version": "1.1.4",
325 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
326 | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
327 | },
328 | "chrome-launcher": {
329 | "version": "0.13.4",
330 | "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.13.4.tgz",
331 | "integrity": "sha512-nnzXiDbGKjDSK6t2I+35OAPBy5Pw/39bgkb/ZAFwMhwJbdYBp6aH+vW28ZgtjdU890Q7D+3wN/tB8N66q5Gi2A==",
332 | "requires": {
333 | "@types/node": "*",
334 | "escape-string-regexp": "^1.0.5",
335 | "is-wsl": "^2.2.0",
336 | "lighthouse-logger": "^1.0.0",
337 | "mkdirp": "^0.5.3",
338 | "rimraf": "^3.0.2"
339 | }
340 | },
341 | "clone-response": {
342 | "version": "1.0.2",
343 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
344 | "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
345 | "requires": {
346 | "mimic-response": "^1.0.0"
347 | }
348 | },
349 | "color-convert": {
350 | "version": "2.0.1",
351 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
352 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
353 | "requires": {
354 | "color-name": "~1.1.4"
355 | }
356 | },
357 | "color-name": {
358 | "version": "1.1.4",
359 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
360 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
361 | },
362 | "compress-commons": {
363 | "version": "4.1.0",
364 | "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.0.tgz",
365 | "integrity": "sha512-ofaaLqfraD1YRTkrRKPCrGJ1pFeDG/MVCkVVV2FNGeWquSlqw5wOrwOfPQ1xF2u+blpeWASie5EubHz+vsNIgA==",
366 | "requires": {
367 | "buffer-crc32": "^0.2.13",
368 | "crc32-stream": "^4.0.1",
369 | "normalize-path": "^3.0.0",
370 | "readable-stream": "^3.6.0"
371 | }
372 | },
373 | "concat-map": {
374 | "version": "0.0.1",
375 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
376 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
377 | },
378 | "core-js-pure": {
379 | "version": "3.9.1",
380 | "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.1.tgz",
381 | "integrity": "sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A=="
382 | },
383 | "core-util-is": {
384 | "version": "1.0.2",
385 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
386 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
387 | },
388 | "crc-32": {
389 | "version": "1.2.0",
390 | "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz",
391 | "integrity": "sha512-1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA==",
392 | "requires": {
393 | "exit-on-epipe": "~1.0.1",
394 | "printj": "~1.1.0"
395 | }
396 | },
397 | "crc32-stream": {
398 | "version": "4.0.2",
399 | "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.2.tgz",
400 | "integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==",
401 | "requires": {
402 | "crc-32": "^1.2.0",
403 | "readable-stream": "^3.4.0"
404 | }
405 | },
406 | "css-shorthand-properties": {
407 | "version": "1.1.1",
408 | "resolved": "https://registry.npmjs.org/css-shorthand-properties/-/css-shorthand-properties-1.1.1.tgz",
409 | "integrity": "sha512-Md+Juc7M3uOdbAFwOYlTrccIZ7oCFuzrhKYQjdeUEW/sE1hv17Jp/Bws+ReOPpGVBTYCBoYo+G17V5Qo8QQ75A=="
410 | },
411 | "css-value": {
412 | "version": "0.0.1",
413 | "resolved": "https://registry.npmjs.org/css-value/-/css-value-0.0.1.tgz",
414 | "integrity": "sha1-Xv1sLupeof1rasV+wEJ7GEUkJOo="
415 | },
416 | "debug": {
417 | "version": "2.6.9",
418 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
419 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
420 | "requires": {
421 | "ms": "2.0.0"
422 | }
423 | },
424 | "decompress-response": {
425 | "version": "6.0.0",
426 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
427 | "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
428 | "requires": {
429 | "mimic-response": "^3.1.0"
430 | },
431 | "dependencies": {
432 | "mimic-response": {
433 | "version": "3.1.0",
434 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
435 | "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
436 | }
437 | }
438 | },
439 | "deepmerge": {
440 | "version": "4.2.2",
441 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
442 | "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
443 | },
444 | "defer-to-connect": {
445 | "version": "2.0.1",
446 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
447 | "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="
448 | },
449 | "devtools": {
450 | "version": "7.2.1",
451 | "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.2.1.tgz",
452 | "integrity": "sha512-aAREyP9xrA7CAbQPraZZWV9bWQj85gaKgT4vpUavXp65fKSNeEqy6chA+DO5MCJw0lKwGjW8BHt8SacxkTdyWQ==",
453 | "requires": {
454 | "@wdio/config": "7.2.1",
455 | "@wdio/logger": "7.0.0",
456 | "@wdio/protocols": "7.1.1",
457 | "@wdio/types": "7.2.1",
458 | "@wdio/utils": "7.2.1",
459 | "chrome-launcher": "^0.13.1",
460 | "edge-paths": "^2.1.0",
461 | "puppeteer-core": "^7.1.0",
462 | "ua-parser-js": "^0.7.21",
463 | "uuid": "^8.0.0"
464 | }
465 | },
466 | "devtools-protocol": {
467 | "version": "0.0.863986",
468 | "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.863986.tgz",
469 | "integrity": "sha512-WMf5KuRLsLwJMp9JdawSvoEpxZPqyyNeOZ3YR8QF8lE9IVHbbpdWeuXV22SJxPUemFeznvVlwSBeQz91nL+41A=="
470 | },
471 | "edge-paths": {
472 | "version": "2.2.1",
473 | "resolved": "https://registry.npmjs.org/edge-paths/-/edge-paths-2.2.1.tgz",
474 | "integrity": "sha512-AI5fC7dfDmCdKo3m5y7PkYE8m6bMqR6pvVpgtrZkkhcJXFLelUgkjrhk3kXXx8Kbw2cRaTT4LkOR7hqf39KJdw==",
475 | "requires": {
476 | "@types/which": "^1.3.2",
477 | "which": "^2.0.2"
478 | }
479 | },
480 | "end-of-stream": {
481 | "version": "1.4.4",
482 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
483 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
484 | "requires": {
485 | "once": "^1.4.0"
486 | }
487 | },
488 | "escape-string-regexp": {
489 | "version": "1.0.5",
490 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
491 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
492 | },
493 | "exit-on-epipe": {
494 | "version": "1.0.1",
495 | "resolved": "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz",
496 | "integrity": "sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw=="
497 | },
498 | "extract-zip": {
499 | "version": "2.0.1",
500 | "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
501 | "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
502 | "requires": {
503 | "@types/yauzl": "^2.9.1",
504 | "debug": "^4.1.1",
505 | "get-stream": "^5.1.0",
506 | "yauzl": "^2.10.0"
507 | },
508 | "dependencies": {
509 | "debug": {
510 | "version": "4.3.1",
511 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
512 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
513 | "requires": {
514 | "ms": "2.1.2"
515 | }
516 | },
517 | "ms": {
518 | "version": "2.1.2",
519 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
520 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
521 | }
522 | }
523 | },
524 | "fast-deep-equal": {
525 | "version": "2.0.1",
526 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
527 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
528 | },
529 | "fd-slicer": {
530 | "version": "1.1.0",
531 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
532 | "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
533 | "requires": {
534 | "pend": "~1.2.0"
535 | }
536 | },
537 | "find-up": {
538 | "version": "4.1.0",
539 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
540 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
541 | "requires": {
542 | "locate-path": "^5.0.0",
543 | "path-exists": "^4.0.0"
544 | }
545 | },
546 | "fs-constants": {
547 | "version": "1.0.0",
548 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
549 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
550 | },
551 | "fs-extra": {
552 | "version": "9.1.0",
553 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
554 | "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
555 | "requires": {
556 | "at-least-node": "^1.0.0",
557 | "graceful-fs": "^4.2.0",
558 | "jsonfile": "^6.0.1",
559 | "universalify": "^2.0.0"
560 | }
561 | },
562 | "fs.realpath": {
563 | "version": "1.0.0",
564 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
565 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
566 | },
567 | "get-port": {
568 | "version": "5.1.1",
569 | "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz",
570 | "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ=="
571 | },
572 | "get-stream": {
573 | "version": "5.2.0",
574 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
575 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
576 | "requires": {
577 | "pump": "^3.0.0"
578 | }
579 | },
580 | "glob": {
581 | "version": "7.1.6",
582 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
583 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
584 | "requires": {
585 | "fs.realpath": "^1.0.0",
586 | "inflight": "^1.0.4",
587 | "inherits": "2",
588 | "minimatch": "^3.0.4",
589 | "once": "^1.3.0",
590 | "path-is-absolute": "^1.0.0"
591 | }
592 | },
593 | "got": {
594 | "version": "11.8.2",
595 | "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz",
596 | "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==",
597 | "requires": {
598 | "@sindresorhus/is": "^4.0.0",
599 | "@szmarczak/http-timer": "^4.0.5",
600 | "@types/cacheable-request": "^6.0.1",
601 | "@types/responselike": "^1.0.0",
602 | "cacheable-lookup": "^5.0.3",
603 | "cacheable-request": "^7.0.1",
604 | "decompress-response": "^6.0.0",
605 | "http2-wrapper": "^1.0.0-beta.5.2",
606 | "lowercase-keys": "^2.0.0",
607 | "p-cancelable": "^2.0.0",
608 | "responselike": "^2.0.0"
609 | }
610 | },
611 | "graceful-fs": {
612 | "version": "4.2.6",
613 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
614 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
615 | },
616 | "grapheme-splitter": {
617 | "version": "1.0.4",
618 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
619 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
620 | },
621 | "has-flag": {
622 | "version": "4.0.0",
623 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
624 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
625 | },
626 | "http-cache-semantics": {
627 | "version": "4.1.0",
628 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
629 | "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
630 | },
631 | "http2-wrapper": {
632 | "version": "1.0.3",
633 | "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz",
634 | "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==",
635 | "requires": {
636 | "quick-lru": "^5.1.1",
637 | "resolve-alpn": "^1.0.0"
638 | }
639 | },
640 | "https-proxy-agent": {
641 | "version": "5.0.0",
642 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
643 | "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
644 | "requires": {
645 | "agent-base": "6",
646 | "debug": "4"
647 | },
648 | "dependencies": {
649 | "debug": {
650 | "version": "4.3.1",
651 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
652 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
653 | "requires": {
654 | "ms": "2.1.2"
655 | }
656 | },
657 | "ms": {
658 | "version": "2.1.2",
659 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
660 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
661 | }
662 | }
663 | },
664 | "ieee754": {
665 | "version": "1.2.1",
666 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
667 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
668 | },
669 | "inflight": {
670 | "version": "1.0.6",
671 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
672 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
673 | "requires": {
674 | "once": "^1.3.0",
675 | "wrappy": "1"
676 | }
677 | },
678 | "inherits": {
679 | "version": "2.0.4",
680 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
681 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
682 | },
683 | "is-docker": {
684 | "version": "2.1.1",
685 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz",
686 | "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw=="
687 | },
688 | "is-wsl": {
689 | "version": "2.2.0",
690 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
691 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
692 | "requires": {
693 | "is-docker": "^2.0.0"
694 | }
695 | },
696 | "isarray": {
697 | "version": "1.0.0",
698 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
699 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
700 | },
701 | "isexe": {
702 | "version": "2.0.0",
703 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
704 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
705 | },
706 | "json-buffer": {
707 | "version": "3.0.1",
708 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
709 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
710 | },
711 | "jsonfile": {
712 | "version": "6.1.0",
713 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
714 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
715 | "requires": {
716 | "graceful-fs": "^4.1.6",
717 | "universalify": "^2.0.0"
718 | }
719 | },
720 | "keyv": {
721 | "version": "4.0.3",
722 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz",
723 | "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==",
724 | "requires": {
725 | "json-buffer": "3.0.1"
726 | }
727 | },
728 | "lazystream": {
729 | "version": "1.0.0",
730 | "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
731 | "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
732 | "requires": {
733 | "readable-stream": "^2.0.5"
734 | },
735 | "dependencies": {
736 | "readable-stream": {
737 | "version": "2.3.7",
738 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
739 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
740 | "requires": {
741 | "core-util-is": "~1.0.0",
742 | "inherits": "~2.0.3",
743 | "isarray": "~1.0.0",
744 | "process-nextick-args": "~2.0.0",
745 | "safe-buffer": "~5.1.1",
746 | "string_decoder": "~1.1.1",
747 | "util-deprecate": "~1.0.1"
748 | }
749 | }
750 | }
751 | },
752 | "lighthouse-logger": {
753 | "version": "1.2.0",
754 | "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz",
755 | "integrity": "sha512-wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw==",
756 | "requires": {
757 | "debug": "^2.6.8",
758 | "marky": "^1.2.0"
759 | }
760 | },
761 | "locate-path": {
762 | "version": "5.0.0",
763 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
764 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
765 | "requires": {
766 | "p-locate": "^4.1.0"
767 | }
768 | },
769 | "lodash.clonedeep": {
770 | "version": "4.5.0",
771 | "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
772 | "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8="
773 | },
774 | "lodash.defaults": {
775 | "version": "4.2.0",
776 | "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
777 | "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw="
778 | },
779 | "lodash.difference": {
780 | "version": "4.5.0",
781 | "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz",
782 | "integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw="
783 | },
784 | "lodash.flatten": {
785 | "version": "4.4.0",
786 | "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz",
787 | "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8="
788 | },
789 | "lodash.isobject": {
790 | "version": "3.0.2",
791 | "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz",
792 | "integrity": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0="
793 | },
794 | "lodash.isplainobject": {
795 | "version": "4.0.6",
796 | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
797 | "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs="
798 | },
799 | "lodash.merge": {
800 | "version": "4.6.2",
801 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
802 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
803 | },
804 | "lodash.union": {
805 | "version": "4.6.0",
806 | "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz",
807 | "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg="
808 | },
809 | "lodash.zip": {
810 | "version": "4.2.0",
811 | "resolved": "https://registry.npmjs.org/lodash.zip/-/lodash.zip-4.2.0.tgz",
812 | "integrity": "sha1-7GZi5IlkCO1KtsVCo5kLcswIACA="
813 | },
814 | "loglevel": {
815 | "version": "1.7.1",
816 | "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz",
817 | "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw=="
818 | },
819 | "loglevel-plugin-prefix": {
820 | "version": "0.8.4",
821 | "resolved": "https://registry.npmjs.org/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.8.4.tgz",
822 | "integrity": "sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g=="
823 | },
824 | "lowercase-keys": {
825 | "version": "2.0.0",
826 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
827 | "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
828 | },
829 | "marky": {
830 | "version": "1.2.1",
831 | "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz",
832 | "integrity": "sha512-md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ=="
833 | },
834 | "mimic-response": {
835 | "version": "1.0.1",
836 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
837 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="
838 | },
839 | "minimatch": {
840 | "version": "3.0.4",
841 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
842 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
843 | "requires": {
844 | "brace-expansion": "^1.1.7"
845 | }
846 | },
847 | "minimist": {
848 | "version": "1.2.5",
849 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
850 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
851 | },
852 | "mkdirp": {
853 | "version": "0.5.5",
854 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
855 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
856 | "requires": {
857 | "minimist": "^1.2.5"
858 | }
859 | },
860 | "mkdirp-classic": {
861 | "version": "0.5.3",
862 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
863 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
864 | },
865 | "ms": {
866 | "version": "2.0.0",
867 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
868 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
869 | },
870 | "node-fetch": {
871 | "version": "2.6.1",
872 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
873 | "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
874 | },
875 | "normalize-path": {
876 | "version": "3.0.0",
877 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
878 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
879 | },
880 | "normalize-url": {
881 | "version": "4.5.0",
882 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
883 | "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ=="
884 | },
885 | "once": {
886 | "version": "1.4.0",
887 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
888 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
889 | "requires": {
890 | "wrappy": "1"
891 | }
892 | },
893 | "p-cancelable": {
894 | "version": "2.1.0",
895 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz",
896 | "integrity": "sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ=="
897 | },
898 | "p-limit": {
899 | "version": "2.3.0",
900 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
901 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
902 | "requires": {
903 | "p-try": "^2.0.0"
904 | }
905 | },
906 | "p-locate": {
907 | "version": "4.1.0",
908 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
909 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
910 | "requires": {
911 | "p-limit": "^2.2.0"
912 | }
913 | },
914 | "p-try": {
915 | "version": "2.2.0",
916 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
917 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
918 | },
919 | "path-exists": {
920 | "version": "4.0.0",
921 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
922 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
923 | },
924 | "path-is-absolute": {
925 | "version": "1.0.1",
926 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
927 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
928 | },
929 | "pend": {
930 | "version": "1.2.0",
931 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
932 | "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA="
933 | },
934 | "pkg-dir": {
935 | "version": "4.2.0",
936 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
937 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
938 | "requires": {
939 | "find-up": "^4.0.0"
940 | }
941 | },
942 | "printj": {
943 | "version": "1.1.2",
944 | "resolved": "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz",
945 | "integrity": "sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ=="
946 | },
947 | "process-nextick-args": {
948 | "version": "2.0.1",
949 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
950 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
951 | },
952 | "progress": {
953 | "version": "2.0.3",
954 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
955 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
956 | },
957 | "proxy-from-env": {
958 | "version": "1.1.0",
959 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
960 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
961 | },
962 | "pump": {
963 | "version": "3.0.0",
964 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
965 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
966 | "requires": {
967 | "end-of-stream": "^1.1.0",
968 | "once": "^1.3.1"
969 | }
970 | },
971 | "puppeteer-core": {
972 | "version": "7.1.0",
973 | "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-7.1.0.tgz",
974 | "integrity": "sha512-2wjKs3L1rYuoVNNtRR/GbAGjbt6LF8DRUxcg/UoCQZrzjfppWlrIqiHRF5uBzJk+Nc0w7ZkvVzKQCvB5PFqFdA==",
975 | "requires": {
976 | "debug": "^4.1.0",
977 | "devtools-protocol": "0.0.847576",
978 | "extract-zip": "^2.0.0",
979 | "https-proxy-agent": "^5.0.0",
980 | "node-fetch": "^2.6.1",
981 | "pkg-dir": "^4.2.0",
982 | "progress": "^2.0.1",
983 | "proxy-from-env": "^1.1.0",
984 | "rimraf": "^3.0.2",
985 | "tar-fs": "^2.0.0",
986 | "unbzip2-stream": "^1.3.3",
987 | "ws": "^7.2.3"
988 | },
989 | "dependencies": {
990 | "debug": {
991 | "version": "4.3.1",
992 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
993 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
994 | "requires": {
995 | "ms": "2.1.2"
996 | }
997 | },
998 | "devtools-protocol": {
999 | "version": "0.0.847576",
1000 | "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.847576.tgz",
1001 | "integrity": "sha512-0M8kobnSQE0Jmly7Mhbeq0W/PpZfnuK+WjN2ZRVPbGqYwCHCioAVp84H0TcLimgECcN5H976y5QiXMGBC9JKmg=="
1002 | },
1003 | "ms": {
1004 | "version": "2.1.2",
1005 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1006 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
1007 | }
1008 | }
1009 | },
1010 | "quick-lru": {
1011 | "version": "5.1.1",
1012 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
1013 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
1014 | },
1015 | "readable-stream": {
1016 | "version": "3.6.0",
1017 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
1018 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
1019 | "requires": {
1020 | "inherits": "^2.0.3",
1021 | "string_decoder": "^1.1.1",
1022 | "util-deprecate": "^1.0.1"
1023 | }
1024 | },
1025 | "readdir-glob": {
1026 | "version": "1.1.1",
1027 | "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.1.tgz",
1028 | "integrity": "sha512-91/k1EzZwDx6HbERR+zucygRFfiPl2zkIYZtv3Jjr6Mn7SkKcVct8aVO+sSRiGMc6fLf72du3d92/uY63YPdEA==",
1029 | "requires": {
1030 | "minimatch": "^3.0.4"
1031 | }
1032 | },
1033 | "regenerator-runtime": {
1034 | "version": "0.13.7",
1035 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
1036 | "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="
1037 | },
1038 | "resolve-alpn": {
1039 | "version": "1.0.0",
1040 | "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz",
1041 | "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA=="
1042 | },
1043 | "responselike": {
1044 | "version": "2.0.0",
1045 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
1046 | "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
1047 | "requires": {
1048 | "lowercase-keys": "^2.0.0"
1049 | }
1050 | },
1051 | "resq": {
1052 | "version": "1.10.0",
1053 | "resolved": "https://registry.npmjs.org/resq/-/resq-1.10.0.tgz",
1054 | "integrity": "sha512-hCUd0xMalqtPDz4jXIqs0M5Wnv/LZXN8h7unFOo4/nvExT9dDPbhwd3udRxLlp0HgBnHcV009UlduE9NZi7A6w==",
1055 | "requires": {
1056 | "fast-deep-equal": "^2.0.1"
1057 | }
1058 | },
1059 | "rgb2hex": {
1060 | "version": "0.2.3",
1061 | "resolved": "https://registry.npmjs.org/rgb2hex/-/rgb2hex-0.2.3.tgz",
1062 | "integrity": "sha512-clEe0m1xv+Tva1B/TOepuIcvLAxP0U+sCDfgt1SX1HmI2Ahr5/Cd/nzJM1e78NKVtWdoo0s33YehpFA8UfIShQ=="
1063 | },
1064 | "rimraf": {
1065 | "version": "3.0.2",
1066 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
1067 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
1068 | "requires": {
1069 | "glob": "^7.1.3"
1070 | }
1071 | },
1072 | "safe-buffer": {
1073 | "version": "5.1.2",
1074 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
1075 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
1076 | },
1077 | "serialize-error": {
1078 | "version": "8.0.1",
1079 | "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-8.0.1.tgz",
1080 | "integrity": "sha512-r5o60rWFS+8/b49DNAbB+GXZA0SpDpuWE758JxDKgRTga05r3U5lwyksE91dYKDhXSmnu36RALj615E6Aj5pSg==",
1081 | "requires": {
1082 | "type-fest": "^0.20.2"
1083 | }
1084 | },
1085 | "string_decoder": {
1086 | "version": "1.1.1",
1087 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
1088 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
1089 | "requires": {
1090 | "safe-buffer": "~5.1.0"
1091 | }
1092 | },
1093 | "strip-ansi": {
1094 | "version": "6.0.0",
1095 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
1096 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
1097 | "requires": {
1098 | "ansi-regex": "^5.0.0"
1099 | }
1100 | },
1101 | "supports-color": {
1102 | "version": "7.2.0",
1103 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1104 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1105 | "requires": {
1106 | "has-flag": "^4.0.0"
1107 | }
1108 | },
1109 | "tar-fs": {
1110 | "version": "2.1.1",
1111 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
1112 | "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
1113 | "requires": {
1114 | "chownr": "^1.1.1",
1115 | "mkdirp-classic": "^0.5.2",
1116 | "pump": "^3.0.0",
1117 | "tar-stream": "^2.1.4"
1118 | }
1119 | },
1120 | "tar-stream": {
1121 | "version": "2.2.0",
1122 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
1123 | "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
1124 | "requires": {
1125 | "bl": "^4.0.3",
1126 | "end-of-stream": "^1.4.1",
1127 | "fs-constants": "^1.0.0",
1128 | "inherits": "^2.0.3",
1129 | "readable-stream": "^3.1.1"
1130 | }
1131 | },
1132 | "through": {
1133 | "version": "2.3.8",
1134 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
1135 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
1136 | },
1137 | "type-fest": {
1138 | "version": "0.20.2",
1139 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
1140 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
1141 | },
1142 | "ua-parser-js": {
1143 | "version": "0.7.26",
1144 | "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.26.tgz",
1145 | "integrity": "sha512-VwIvGlFNmpKbjzRt51jpbbFTrKIEgGHxIwA8Y69K1Bqc6bTIV7TaGGABOkghSFQWsLmcRB4drGvpfv9z2szqoQ=="
1146 | },
1147 | "unbzip2-stream": {
1148 | "version": "1.4.3",
1149 | "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
1150 | "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
1151 | "requires": {
1152 | "buffer": "^5.2.1",
1153 | "through": "^2.3.8"
1154 | }
1155 | },
1156 | "universalify": {
1157 | "version": "2.0.0",
1158 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
1159 | "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="
1160 | },
1161 | "util-deprecate": {
1162 | "version": "1.0.2",
1163 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1164 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
1165 | },
1166 | "uuid": {
1167 | "version": "8.3.2",
1168 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
1169 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
1170 | },
1171 | "webdriver": {
1172 | "version": "7.2.1",
1173 | "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-7.2.1.tgz",
1174 | "integrity": "sha512-j1LxpYifp3JQMm7L1c+jQXKCqhfw99zzsSw2FMCrKwsfgdTJOblt9cEjet6ImBOgXS81LdYqVw6BFTZ9vRkvnw==",
1175 | "requires": {
1176 | "@wdio/config": "7.2.1",
1177 | "@wdio/logger": "7.0.0",
1178 | "@wdio/protocols": "7.1.1",
1179 | "@wdio/types": "7.2.1",
1180 | "@wdio/utils": "7.2.1",
1181 | "got": "^11.0.2",
1182 | "lodash.merge": "^4.6.1"
1183 | }
1184 | },
1185 | "webdriverio": {
1186 | "version": "7.2.3",
1187 | "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.2.3.tgz",
1188 | "integrity": "sha512-ikyTL4CmRTF9/CD1GjXktiQBDvsMxjbpVpVPotw1K/Izw2Q47WyTnkd1v8JAheXrYLJJlsyZopOWEUkW7VwkZw==",
1189 | "requires": {
1190 | "@types/aria-query": "^4.2.1",
1191 | "@wdio/config": "7.2.1",
1192 | "@wdio/logger": "7.0.0",
1193 | "@wdio/protocols": "7.1.1",
1194 | "@wdio/repl": "7.2.1",
1195 | "@wdio/types": "7.2.1",
1196 | "@wdio/utils": "7.2.1",
1197 | "archiver": "^5.0.0",
1198 | "aria-query": "^4.2.2",
1199 | "atob": "^2.1.2",
1200 | "css-shorthand-properties": "^1.1.1",
1201 | "css-value": "^0.0.1",
1202 | "devtools": "7.2.1",
1203 | "devtools-protocol": "^0.0.863986",
1204 | "fs-extra": "^9.0.1",
1205 | "get-port": "^5.1.1",
1206 | "grapheme-splitter": "^1.0.2",
1207 | "lodash.clonedeep": "^4.5.0",
1208 | "lodash.isobject": "^3.0.2",
1209 | "lodash.isplainobject": "^4.0.6",
1210 | "lodash.zip": "^4.2.0",
1211 | "minimatch": "^3.0.4",
1212 | "puppeteer-core": "^7.1.0",
1213 | "resq": "^1.9.1",
1214 | "rgb2hex": "0.2.3",
1215 | "serialize-error": "^8.0.0",
1216 | "webdriver": "7.2.1"
1217 | }
1218 | },
1219 | "which": {
1220 | "version": "2.0.2",
1221 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1222 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1223 | "requires": {
1224 | "isexe": "^2.0.0"
1225 | }
1226 | },
1227 | "wrappy": {
1228 | "version": "1.0.2",
1229 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1230 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
1231 | },
1232 | "ws": {
1233 | "version": "7.4.4",
1234 | "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz",
1235 | "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw=="
1236 | },
1237 | "yauzl": {
1238 | "version": "2.10.0",
1239 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
1240 | "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
1241 | "requires": {
1242 | "buffer-crc32": "~0.2.3",
1243 | "fd-slicer": "~1.1.0"
1244 | }
1245 | },
1246 | "zip-stream": {
1247 | "version": "4.1.0",
1248 | "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.0.tgz",
1249 | "integrity": "sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==",
1250 | "requires": {
1251 | "archiver-utils": "^2.1.0",
1252 | "compress-commons": "^4.1.0",
1253 | "readable-stream": "^3.6.0"
1254 | }
1255 | }
1256 | }
1257 | }
1258 |
--------------------------------------------------------------------------------
/client/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "client",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC",
12 | "dependencies": {
13 | "webdriverio": "^7.2.3"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/client/test.js:
--------------------------------------------------------------------------------
1 | // javascript
2 |
3 | const wdio = require("webdriverio");
4 |
5 | const opts = {
6 | path: '/wd/hub',
7 | port: 4723,
8 | capabilities: {
9 | deviceName: "blabla",
10 | automationName: "XCUITest",
11 | platformName: "iOS",
12 | browserName: "Safari",
13 | udid: "auto",
14 | usePrebuiltWDA: true,
15 | startIWDP: true,
16 | webDriverAgentUrl: "http://localhost:7777"
17 | }
18 | };
19 |
20 | async function main () {
21 | const client = await wdio.remote(opts);
22 | await client.url('https://www.youtube.com/watch?v=8v5f_ybSjHk');
23 | client.pause(5000);
24 | await client.activateApp( "com.apple.weather")
25 | await client.deleteSession();
26 | }
27 |
28 | main();
29 |
--------------------------------------------------------------------------------
/run.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # pass the container image name as a parameter
3 | # exposes the default appium port 4723 so our automation script can use it.
4 | # mounts /var/run/usbmuxd into the container, this is the unix domain socket that allows all tools
5 | # to communicate with iOS devices.
6 | # /var/lib/lockdown is where the pairing information is stored, so you don't have to pair your phone
7 | # everytime, but just once on the host
8 | docker run -p 4723:4723 -v /var/run/usbmuxd:/var/run/usbmuxd -v /var/lib/lockdown:/var/lib/lockdown $1
9 |
--------------------------------------------------------------------------------
/startAppium.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # this is the entrypoint script for our container
3 | # set up go-iOS to forward the localhost:7777 over USB to WebDriverAgent on 8100
4 | # Appium will use that port because we tell it to in the desiredCapabilities of our automation
5 | # script.
6 | /ios forward 7777 8100&
7 | # set up nodeJS with nvm
8 | export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
9 |
10 | # run appium
11 | /root/.nvm/versions/node/v14.16.0/bin/appium
12 |
--------------------------------------------------------------------------------