DataDriven(Sheets) Testing #1035
Answered
by
mdmintz
abdurraheemj
asked this question in
Q&A
-
Hi Michael, |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Oct 27, 2021
Replies: 2 comments 1 reply
-
@abdurraheemj You can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@abdurraheemj You can use
self.get_text(selector)
to scrape data from the sheet. You can useself.assert_text(text, selector)
to assert data directly from the sheet. You can useself.type(selector, text)
to type data into a sheet. I don't have an existing example that uses Google Sheets, but the standard commands should work.