質問編集履歴
1
スクリプトを```で囲う、リスト表示の修正、参考サイトURLの記載
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
IEDriver以下を実行すると、「This is the initial start page for the WebDriver server.」と表示されます。
|
3
3
|
|
4
4
|
■スクリプト
|
5
|
+
```Selenium
|
5
6
|
import org.openqa.selenium.WebDriver;
|
6
7
|
import org.openqa.selenium.ie.InternetExplorerDriver;
|
7
8
|
import org.openqa.selenium.remote.DesiredCapabilities;
|
@@ -17,19 +18,22 @@
|
|
17
18
|
}
|
18
19
|
}
|
19
20
|
|
21
|
+
```
|
20
22
|
|
21
23
|
■環境は
|
22
|
-
‐Eclipse:4.7.3
|
24
|
+
‐ Eclipse:4.7.3
|
23
|
-
‐java version:1.8.0_121
|
25
|
+
‐ java version:1.8.0_121
|
24
|
-
‐Selenium version:selenium-2.42.2
|
26
|
+
‐ Selenium version:selenium-2.42.2
|
25
|
-
‐IEDriver:Win32_3.12.0
|
27
|
+
‐ IEDriver:Win32_3.12.0
|
26
28
|
パスは全て通っています。
|
27
29
|
|
28
30
|
■実施済み対応
|
29
|
-
‐インターネットオプションの全てのゾーンで「保護モードを有効にする」
|
31
|
+
‐ インターネットオプションの全てのゾーンで「保護モードを有効にする」
|
30
|
-
‐レジストリの「HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE」に、名前「iexplore.exe」、値「0」を追加しています。
|
32
|
+
‐ レジストリの「HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE」に、名前「iexplore.exe」、値「0」を追加しています。
|
31
33
|
|
32
|
-
|
34
|
+
以下のサイトを参考に対応してみたのですが、解決できませんでしたので、
|
33
35
|
どなたか教えていただけないでしょうか。
|
36
|
+
参考サイトURL
|
37
|
+
http://bitwave.showcase-tv.com/selenium%E3%81%A7internet-explorer11%E3%82%92%E5%8B%95%E3%81%8B%E3%81%99%E6%96%B9%E6%B3%95/
|
34
38
|
|
35
39
|
よろしくお願いいたします。
|