質問編集履歴

2

2018/09/04 21:48

投稿

MASAKIX
MASAKIX

スコア12

test CHANGED
@@ -1 +1 @@
1
- nightmareJSにおけるページ遷移までのwait
1
+ nightmareJSにおけるwait
test CHANGED
File without changes

1

waitでも書いてみたがだめ

2018/09/04 21:48

投稿

MASAKIX
MASAKIX

スコア12

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,27 @@
31
31
  (node:8912) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
32
32
 
33
33
  ```
34
+
35
+
36
+
37
+ ちなみに以下のように書いても上記のエラーが出ました
38
+
39
+
40
+
41
+ ```JS
42
+
43
+ .wait(function()
44
+
45
+ {
46
+
47
+ body.onload =function()
48
+
49
+ {
50
+
51
+ return true;
52
+
53
+ }
54
+
55
+ })
56
+
57
+ ```