-
-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to select option in select tag? #183
Comments
This code works well in URL https://www.etsy.com/listing/1256868877/vintage-pear-shaped-emerald-engagement with Selenium. I have been unable to find a solution to this problem in Botosaurus for 3 days now. When click(), nothing happens. When a human_click(), it does not find the element and throws an exception. js_run() does not work also. Does anyone here ever answered? |
Anybody help me!!! Botazaurus can't do a simple click on the select option. I've been suffering for three days already. I've already tried all the options |
@sdv75 have you found a way to do it? I have the same problem after migrating to v4. |
|
Thank you this is working perfectly! |
In Selenium it could be done like this:
select_item = driver.find_element(By.ID, "#some_id")
Select(select_item).select_by_value(random_value)
How to do this in Botasaurus?
The text was updated successfully, but these errors were encountered: