UNPKG
@nesk/puphpeteer
Version:
latest (2.0.0)
2.0.0
1.6.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
A Puppeteer bridge for PHP, supporting the entire API.
github.com/nesk/puphpeteer
nesk/puphpeteer
@nesk/puphpeteer
/
tests
/
resources
/
index.html
19 lines
(15 loc)
•
361 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE
html
>
<
html
>
<
head
>
<
title
>
Document
</
title
>
<
link
rel
=
"stylesheet"
href
=
"./stylesheet.css"
>
</
head
>
<
body
>
<
h1
>
Example Page
</
h1
>
<
script
>
console
.
log
(
'Starting worker...'
);
new
Worker
(
'worker.js'
);
console
.
log
(
'Worker started!'
);
</
script
>
</
body
>
</
html
>