|
code: ` random_reklama1link = random.choice(reklama1link) ` error: Is there a way to uc.click html element that is stored in variable? |
Replies: 1 comment
|
The correct syntax is |
|
code: ` random_reklama1link = random.choice(reklama1link) ` error: Is there a way to uc.click html element that is stored in variable? |
|
The correct syntax is |
The correct syntax is
driver.uc_click(selector).You must pass a selector, not a WebElement.
driver.find_elementsreturns a list of WebElements.