質問編集履歴

2

html = str(driver.page_source)と修正しました。

2021/05/27 16:06

投稿

exact
exact

スコア0

test CHANGED
File without changes
test CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
  file_object = codecs.open(complete_name, "w", "utf-8")
54
54
 
55
- html = driver.page_source
55
+ html = str(driver.page_source)
56
56
 
57
57
  file_object.write(html)
58
58
 

1

説明に不要な#を消去しました。

2021/05/27 16:06

投稿

exact
exact

スコア0

test CHANGED
File without changes
test CHANGED
@@ -40,15 +40,7 @@
40
40
 
41
41
 
42
42
 
43
- ### 1.Webサイトにアクセスする
44
-
45
43
  driver.get(sys.argv[1])#url
46
-
47
-
48
-
49
-
50
-
51
- # 以下ファイル保存
52
44
 
53
45
 
54
46