mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
5955affab0
This patch teaches Puppeteer to click elements that are part of inline layout and that wrap on multiple lines. Fixes #2798.
30 lines
360 B
HTML
30 lines
360 B
HTML
<style>
|
|
:root {
|
|
font-family: monospace;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
div {
|
|
width: 10ch;
|
|
word-wrap: break-word;
|
|
border: 1px solid blue;
|
|
transform: rotate(33deg);
|
|
line-height: 8ch;
|
|
padding: 2ch;
|
|
}
|
|
|
|
a {
|
|
margin-left: 7ch;
|
|
}
|
|
</style>
|
|
<div>
|
|
<a href='#clicked'>123321</a>
|
|
</div>
|
|
<script>
|
|
</script>
|