2020-03-19学习Python笔记

一、编写Python测试用例的语法错误集合

1、AttributeError: 'list' object has no attribute 'send_keys'

解决:把find_elements_by_id方法改成find_element_by_id

2、没有定位到下拉框,没报错

解决:元素定位错误,应该是select_by_value,而非select_by_index,在页面上要注意进行区分

你可能感兴趣的:(2020-03-19学习Python笔记)