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.
2 parents 7594ef0 + 4af6ea8 commit 8d74df7Copy full SHA for 8d74df7
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