質問編集履歴

6

修正

2020/03/01 07:23

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  ```
42
42
 
43
- [参照サイト](https://www.mercari.com/jp/sell/)のinput部分です。
43
+ 参照サイトのinput部分です。
44
44
 
45
45
 
46
46
 

5

参照サイトの添付

2020/03/01 07:23

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  ```
42
42
 
43
- 参照サイトのinput部分です。
43
+ [参照サイト](https://www.mercari.com/jp/sell/)のinput部分です。
44
44
 
45
45
 
46
46
 

4

追記

2020/03/01 03:21

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -46,7 +46,7 @@
46
46
 
47
47
 
48
48
 
49
- また、[ここのサイト](https://www.iloveimg.com/ja/convert-to-jpg)では重複していませんでした。
49
+ また、上のサイトとは異なる[ここのサイト](https://www.iloveimg.com/ja/convert-to-jpg)では重複していませんでした。
50
50
 
51
51
  ```ここに言語を入力
52
52
 

3

追記

2020/03/01 01:51

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -26,6 +26,14 @@
26
26
 
27
27
 
28
28
 
29
+
30
+
31
+
32
+
33
+
34
+
35
+ *追記
36
+
29
37
  ```
30
38
 
31
39
  <input type="file" accept="image/png,image/jpeg" multiple="" style="display:none" autocomplete="off" tabindex="-1" class="sc-cqPOvA kdnXmt">
@@ -45,3 +53,7 @@
45
53
  <input id="html5_1e29s7vnu6i311dd1n139jamp74" type="file" style="font-size: 999px; opacity: 0; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%;" multiple="" accept=".gif,.tif,.tiff,.png,.crw,.cr2,.dng,.raf,.nef,.nrw,.orf,.rw2,.pef,.arw,.srf,.sr2,.raw,.psd,.svg,.webp" tabindex="-1">
46
54
 
47
55
  ```
56
+
57
+
58
+
59
+ また、全体のコードは数行でモジュールのインポートとdriver.getと記載したコードのみになります。

2

追記

2020/03/01 01:50

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,25 @@
23
23
  driver.find_element_by_xpath( "//input[@type='file']" ).send_keys("/Users/xxx/Desktop/Selenium/pics/b.png")
24
24
 
25
25
  ```
26
+
27
+
28
+
29
+ ```
30
+
31
+ <input type="file" accept="image/png,image/jpeg" multiple="" style="display:none" autocomplete="off" tabindex="-1" class="sc-cqPOvA kdnXmt">
32
+
33
+ ```
34
+
35
+ 参照サイトのinput部分です。
36
+
37
+
38
+
39
+
40
+
41
+ また、[ここのサイト](https://www.iloveimg.com/ja/convert-to-jpg)では重複していませんでした。
42
+
43
+ ```ここに言語を入力
44
+
45
+ <input id="html5_1e29s7vnu6i311dd1n139jamp74" type="file" style="font-size: 999px; opacity: 0; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%;" multiple="" accept=".gif,.tif,.tiff,.png,.crw,.cr2,.dng,.raf,.nef,.nrw,.orf,.rw2,.pef,.arw,.srf,.sr2,.raw,.psd,.svg,.webp" tabindex="-1">
46
+
47
+ ```

1

追記

2020/03/01 01:48

投稿

apeirogon0813
apeirogon0813

スコア117

test CHANGED
File without changes
test CHANGED
@@ -7,3 +7,19 @@
7
7
  と6つの画像がアップロードされてしまいます。
8
8
 
9
9
  原因を教え願います。
10
+
11
+
12
+
13
+ ```python
14
+
15
+ driver.find_element_by_xpath( "//input[@type='file']" ).send_keys("/Users/xxx/Desktop/Selenium/pics/a.png")
16
+
17
+ sleep(3)
18
+
19
+ driver.find_element_by_xpath( "//input[@type='file']" ).send_keys("/Users/xxx/Desktop/Selenium/pics/c.png")
20
+
21
+ sleep(4)
22
+
23
+ driver.find_element_by_xpath( "//input[@type='file']" ).send_keys("/Users/xxx/Desktop/Selenium/pics/b.png")
24
+
25
+ ```