質問編集履歴

2

arender()のwait, sleepパラメータとr.html.page.screenshot.__doc__について追記

2021/11/19 06:50

投稿

lis
lis

スコア15

test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,11 @@
48
48
 
49
49
 
50
50
 
51
- ### 試したことと保存された画像の状況
51
+ ## 試したこと
52
+
53
+
54
+
55
+ ### arender()のkeep_page, reloadパラメータに応じた保存画像の状況
52
56
 
53
57
 
54
58
 
@@ -66,6 +70,90 @@
66
70
 
67
71
 
68
72
 
73
+ ### arender()のwait, sleepパラメータを設定
74
+
75
+
76
+
77
+ arender()にwait, sleepパラメータを設定(長めにしてみた)。
78
+
79
+
80
+
81
+ 結果は変わらず期待した画像の取得はできなかった。
82
+
83
+
84
+
85
+ ```python
86
+
87
+ await r.html.arender(wait=60, sleep=60, keep_page=True, reload=False)
88
+
89
+ ```
90
+
91
+
92
+
93
+ ### r.html.page.screenshot.__doc__を確認
94
+
95
+
96
+
97
+ print(r.html.page.screenshot.__doc__)を出力してみたが、画像ファイル形式に関するものしかなかったため、今回の期待値へのアプローチとは関係ない模様。
98
+
99
+
100
+
101
+ ```
102
+
103
+ # print(r.html.page.screenshot.__doc__)
104
+
105
+ Take a screen shot.
106
+
107
+
108
+
109
+ The following options are available:
110
+
111
+
112
+
113
+ * ``path`` (str): The file path to save the image to. The screenshot
114
+
115
+ type will be inferred from the file extension.
116
+
117
+ * ``type`` (str): Specify screenshot type, can be either ``jpeg`` or
118
+
119
+ ``png``. Defaults to ``png``.
120
+
121
+ * ``quality`` (int): The quality of the image, between 0-100. Not
122
+
123
+ applicable to ``png`` image.
124
+
125
+ * ``fullPage`` (bool): When true, take a screenshot of the full
126
+
127
+ scrollable page. Defaults to ``False``.
128
+
129
+ * ``clip`` (dict): An object which specifies clipping region of the
130
+
131
+ page. This option should have the following fields:
132
+
133
+
134
+
135
+ * ``x`` (int): x-coordinate of top-left corner of clip area.
136
+
137
+ * ``y`` (int): y-coordinate of top-left corner of clip area.
138
+
139
+ * ``width`` (int): width of clipping area.
140
+
141
+ * ``height`` (int): height of clipping area.
142
+
143
+
144
+
145
+ * ``omitBackground`` (bool): Hide default white background and allow
146
+
147
+ capturing screenshot with transparency.
148
+
149
+ * ``encoding`` (str): The encoding of the image, can be either
150
+
151
+ ``'base64'`` or ``'binary'``. Defaults to ``'binary'``.
152
+
153
+ ```
154
+
155
+
156
+
69
157
  ## ソース
70
158
 
71
159
 
@@ -126,4 +214,4 @@
126
214
 
127
215
 
128
216
 
129
- - https://qiita.com/uitspitss/items/f131ea79dffd58bc01ae
217
+ - [https://qiita.com/uitspitss/items/f131ea79dffd58bc01ae](https://qiita.com/uitspitss/items/f131ea79dffd58bc01ae)

1

表示が異なる箇所と環境差異に対することを追記(見出し追加)、試したことを見出しとして区切った。

2021/11/19 06:50

投稿

lis
lis

スコア15

test CHANGED
File without changes
test CHANGED
@@ -22,7 +22,33 @@
22
22
 
23
23
 
24
24
 
25
+ ### 表示が異なる箇所の例
26
+
27
+
28
+
29
+ - 本来設定されている背景色が設定がない(白背景)
30
+
31
+ - トップ画像などすべての画像が表示されていない
32
+
33
+ - ハンバーガーメニューに畳まれるはずのメニューが`<ul><li>`をそのままリスト表示した状態で表示されている
34
+
35
+
36
+
37
+ これらのことから恐らくそもそもCSSが適用されていない状態と思われます。
38
+
39
+
40
+
41
+ 実施したスマホ用ページはブラウザサイズをどれだけ大きくしても、表示横幅が広がっていくだけでコンテンツの表示に変更はないページです。
42
+
43
+ そのためサイズによる表示の違いは関係ありません。
44
+
45
+
46
+
47
+ またPCのChromeからUser-Agent偽装してアクセスし、正常に表示されることを確認したUser-Agentを用いて実施しても、同様の状況となっております。
48
+
49
+
50
+
25
- 下記、試したことと保存された画像の状況となります。
51
+ ### 試したことと保存された画像の状況
26
52
 
27
53
 
28
54