-
Notifications
You must be signed in to change notification settings - Fork 2
Issue 53306: Some LKS forms don't distinguish between fields properly #900
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
base: develop
Are you sure you want to change the base?
Conversation
@@ -144,9 +145,9 @@ private void reImportData(Map<String, WellRole[]> wellRoleMap) | |||
goToTestAssayHome(); | |||
click(Locator.linkContainingText(MULTIPLE_CURVE_ASSAY_RUN_NAME)); | |||
clickButtonContainingText("Re-import run"); | |||
checkCheckbox(Locator.radioButtonByNameAndValue("participantVisitResolver", "SampleInfo")); | |||
checkCheckbox(Locator.radioButtonByNameAndValue("ParticipantVisitResolver", "SampleInfo")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I'm sure you already considered it but "ParticipantVisitResolver"
seems like it'd be a good constant as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I initially just pulled out constants for Locator
s. I did another pass and did simple strings for ParticipantVisitResolver
, ThawListType
, and TargetStudy
Rationale
Some
<input>
fields are usingname
attributes that don't differentiate from similarly named fields.Related Pull Requests
Changes