我是testcafe的新手,正在尝试运行一个简单的测试
在create-react-app
制造的客户端上,但是由于某种原因,我无法访问DOM,
并使用react选择器。
我的客户:
import Button from '@material-ui/core/Button'
function(App){
return(
<Button>my button</Button>
);
}
export default App;
这是我的测试
fixture `Record Page`
.page('http://localhost:3000')
test('try', async t=>{
await t
.click(ReactSelector('Button')) //from Material UI
.wait(100000)
})
错误:
the specified selector does not match any element in the DOM tree.
与“按钮”相关的
谢谢