You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 24, 2018. It is now read-only.
I have been testing E2E tools this week and I was quite excited when I discovered this project.
Just my two cents, I don't know if any of you guys know about TestCafe, but they have a very cool way to create selectors for DOM nodes.
import { Selector } from 'testcafe';
// A selector is created from a CSS selector string.
const submitButton = Selector('#submit-button');
then you can just use that on your tests:
.wait(submitButton)
.click(submitButton)
But the beauty of that API is that you can create plugins around that. They also managed to create another tool around the selectors a plugin for React
const myDiv = ReactSelector('TodoApp div');
I guess this would solve a lot of requests similar to #134
The text was updated successfully, but these errors were encountered:
I have been testing E2E tools this week and I was quite excited when I discovered this project.
Just my two cents, I don't know if any of you guys know about TestCafe, but they have a very cool way to create selectors for DOM nodes.
then you can just use that on your tests:
But the beauty of that API is that you can create plugins around that. They also managed to create another tool around the selectors a plugin for React
const myDiv = ReactSelector('TodoApp div');
I guess this would solve a lot of requests similar to
#134
The text was updated successfully, but these errors were encountered: