2 回答
TA贡献1829条经验 获得超7个赞
您可以将 xpath 用作 -
//span[@class='Select-multi-value-wrapper' 和 @id[starts-with(@id,'react-select')
TA贡献1843条经验 获得超7个赞
我自己找到了一个解决方案,inputId 是制作唯一 id 并删除 react-select 丑陋的关键。这是一个例子......
import React from 'react';
import Select from 'react-select';
const options = [
{ value: 'chocolate', label: 'Chocolate' },
{ value: 'strawberry', label: 'Strawberry' },
{ value: 'vanilla', label: 'Vanilla' }
];
export class Counter extends React.Component {
state = {
selectedOption: null,
}
handleChange = (selectedOption) => {
this.setState({ selectedOption });
console.log(`Option selected:`, selectedOption);
}
render() {
const { selectedOption } = this.state;
return (
<Select
value={selectedOption}
inputId="mydropdown"
onChange={this.handleChange}
options={options}
/>
);
}
}
静态定义 inputId 后,我的 Selenium 方法似乎效果更好。
添加回答
举报