回答編集履歴
1
Update
test
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
対象の HTML 要素がレンダリングされる(visible な状態になる)まで待ちます。
|
2
2
|
```python
|
3
|
+
from selenium.webdriver.support.ui import WebDriverWait
|
4
|
+
from selenium.webdriver.support import expected_conditions as EC
|
5
|
+
|
6
|
+
|
3
7
|
driver.get("https://www.library.chiyoda.tokyo.jp/")
|
4
8
|
|
5
9
|
xpath = '//span[@class="schedule-list01__text"]'
|