-
Notifications
You must be signed in to change notification settings - Fork 4.5k
fix: Remove Gsheets unauth method #36125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4ace96d
04b30eb
f57132f
4a445e3
60e41fa
757d256
040643a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,9 +20,10 @@ describe( | |
| dataSources.CreatePlugIn("Google Sheets"); | ||
| VerifyFunctionDropdown([ | ||
| "Read / Write / Delete | Selected google sheets", | ||
| "Read / Write / Delete | All google sheets", | ||
| "Read / Write | All google sheets", | ||
| "Read | All google sheets", | ||
| // Hiding below methods as they are not authorized at this state | ||
sagar-qa007 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // "Read / Write / Delete | All google sheets", | ||
| // "Read / Write | All google sheets", | ||
| // "Read | All google sheets", | ||
|
Comment on lines
+23
to
+26
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use Data Attributes for Selectors To enhance the maintainability and readability of your test code, consider using |
||
| ]); | ||
| dataSources.SaveDSFromDialog(false); | ||
| }); | ||
|
|
@@ -31,8 +32,6 @@ describe( | |
| agHelper.GetNClick(dataSources._gsScopeDropdown); | ||
| cy.get(dataSources._gsScopeOptions).then(function ($ele) { | ||
| expect($ele.eq(0).text()).to.be.oneOf(scopeOptions); | ||
| expect($ele.eq(1).text()).to.be.oneOf(scopeOptions); | ||
| expect($ele.eq(2).text()).to.be.oneOf(scopeOptions); | ||
| }); | ||
| agHelper.GetNClick(dataSources._gsScopeDropdown); | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.