robotframework+python3+selenium之下拉框的选择---第五集

由于我没有找到option形式的,所以借鉴其他大神的博客内容,如下:

 1.F12后看见下拉框的源码是<option xxx>

 

robotframework+python3+selenium之下拉框的选择---第五集

 

robotframework+python3+selenium之下拉框的选择---第五集

2.如果F12后看到的下拉源码是这样的: <div xxxx >,请使用下面方式 
Click Element  xpath = //xxx/div[2] #先点击下拉框显示出来 
Click Element  xpath=//xxx/xxx//div[text()=’用户A’] #然后再点击所要选择的下拉内容

3.键盘操作方法 

robotframework+python3+selenium之下拉框的选择---第五集

 

使用:press key xxxx
查了向下键的ascii为40,enter键的为13.但是久经试验都不对。网上说可以考虑看下selenium的源码中向下键的标识用“\ue015”

 

robotframework+python3+selenium之下拉框的选择---第五集

 

 

 

 

 本文摘自:https://blog.csdn.net/u011757108/article/details/62428484

上一篇:Java中的机器人框架的“等待页面包含”的等效条件是什么?


下一篇:Python3+RobotFramework自动化测试二:第一个demo