使用Selenium Python单击框
I want to click in the box and enter number with selenium python
how I can do that ?
and I want here to click in sign up:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这些,确定他们会起作用
要在框中单击并输入一个需要使用驱动程序的数字。find_element_by_xpath('')。sendkeys('然后您在此处输入号码')
以单击注册,您也可以使用driver.find_element_by_xpath('')
Try these and am sure they would work
To click in the box and input a number you need to use driver.find_element_by_xpath('').sendkeys('then you input the number here')
For the clicking of signup you could also use driver.find_element_by_xpath('')