We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e0cac commit 4af6ea8Copy full SHA for 4af6ea8
Telegram Get-Group-Members Bot/telegram.py
@@ -20,7 +20,8 @@
20
21
# Wait for the search input field to be clickable
22
wait = WebDriverWait(driver, 10)
23
-search_input = wait.until(EC.element_to_be_clickable((By.XPATH, search_input_xpath)))
+search_input = wait.until(
24
+ EC.element_to_be_clickable((By.XPATH, search_input_xpath)))
25
26
group_name = input("Enter the group name")
27
# Perform a search by sending keys and pressing RETURN
@@ -56,5 +57,3 @@
56
57
member_img = member_item.find("img")
58
if member_img:
59
print("Member Image:", member_img['src'])
-
60
0 commit comments