You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. Thank you so much for this great effort. I'm working now with selenium + python and i decided to create a scrappy app using qt(because i need android/linux/windows outputs). And I think there are still some limitations exists here.(compared with selenium) For example:
In selenium it allows you to find links(or buttons) in the pages and click on theme: page.find_element_by_xpath('//button[@id="page-word-search-button"]').click()
Or we can locate an input item and insert some text into it:
input = page.find_element_by_xpath('//input[@id="search"]')
input.send_keys('Ring My Bells')
How do these tasks within qt and with your ideas?
The text was updated successfully, but these errors were encountered:
Hi. Thank you so much for this great effort. I'm working now with selenium + python and i decided to create a scrappy app using qt(because i need android/linux/windows outputs). And I think there are still some limitations exists here.(compared with selenium) For example:
page.find_element_by_xpath('//button[@id="page-word-search-button"]').click()
How do these tasks within qt and with your ideas?
The text was updated successfully, but these errors were encountered: