Skip to content

Commit 58d603d

Browse files
committed
Increase a sleep to create databases
1 parent ef56c7a commit 58d603d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vws_web_tools/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ def create_database(
167167
),
168168
)
169169

170-
time.sleep(1)
170+
# Sleeping 1 second here did not work, so we sleep 5 seconds.
171+
time.sleep(5)
171172
license_dropdown_element.select_by_visible_text(text=license_name)
172173

173174
create_button = driver.find_element(By.ID, "create-btn")

0 commit comments

Comments
 (0)