Skip to content
Snippets Groups Projects
Commit f078b994 authored by Sinzeanu Demetriad's avatar Sinzeanu Demetriad
Browse files

feat: Add data-test for automation testing

parent 27e4c411
No related branches found
No related tags found
2 merge requests!110Sprint 21 Features,!94Hin 979
...@@ -69,7 +69,6 @@ const ExternalLink = styled.a` ...@@ -69,7 +69,6 @@ const ExternalLink = styled.a`
text-decoration: underline; text-decoration: underline;
} }
` `
const CustomLink = ExternalLink.withComponent(Link) const CustomLink = ExternalLink.withComponent(Link)
const Root = styled.div` const Root = styled.div`
......
...@@ -69,7 +69,7 @@ const AuthorTagList = ({ ...@@ -69,7 +69,7 @@ const AuthorTagList = ({
{withAffiliations && ( {withAffiliations && (
<Item flex={0} ml={1}> <Item flex={0} ml={1}>
<ActionLink <ActionLink
data-test-id="affiliations-id" data-test-id="author-affiliations"
icon={showAffiliation ? 'minus' : 'plus'} icon={showAffiliation ? 'minus' : 'plus'}
onClick={toggleAffiliation} onClick={toggleAffiliation}
> >
......
...@@ -11,7 +11,7 @@ const ManuscriptAssignHE = ({ ...@@ -11,7 +11,7 @@ const ManuscriptAssignHE = ({
}) => }) =>
canAssignHE ? ( canAssignHE ? (
<ContextualBox <ContextualBox
data-test-id="assign-handling-editor-id" data-test-id="assign-handling-editor"
expanded={expanded} expanded={expanded}
label="Assign Handling Editor" label="Assign Handling Editor"
scrollIntoView scrollIntoView
......
...@@ -30,7 +30,7 @@ const ManuscriptHeader = ({ ...@@ -30,7 +30,7 @@ const ManuscriptHeader = ({
<Fragment> <Fragment>
<Row <Row
alignItems="baseline" alignItems="baseline"
data-test-id="manuscript-title-id" data-test-id="manuscript-title"
justify="space-between" justify="space-between"
> >
<H2 mb={1}>{title}</H2> <H2 mb={1}>{title}</H2>
...@@ -41,7 +41,7 @@ const ManuscriptHeader = ({ ...@@ -41,7 +41,7 @@ const ManuscriptHeader = ({
{authors.length > 0 && ( {authors.length > 0 && (
<Row <Row
alignItems="center" alignItems="center"
data-test-id="authors-row-id" data-test-id="authors-row"
justify="flex-start" justify="flex-start"
mb={1} mb={1}
> >
......
...@@ -19,7 +19,7 @@ const ManuscriptMetadata = ({ ...@@ -19,7 +19,7 @@ const ManuscriptMetadata = ({
{!!abstract && ( {!!abstract && (
<Item mb={1}> <Item mb={1}>
<ContextualBox <ContextualBox
data-test-id="abstract-tab-id" data-test-id="abstract-tab"
label="Abstract" label="Abstract"
startExpanded startExpanded
transparent transparent
...@@ -33,7 +33,7 @@ const ManuscriptMetadata = ({ ...@@ -33,7 +33,7 @@ const ManuscriptMetadata = ({
{conflicts.hasConflicts === 'yes' && ( {conflicts.hasConflicts === 'yes' && (
<Item mb={1}> <Item mb={1}>
<ContextualBox <ContextualBox
data-test-id="conflict-of-interest-tab-id" data-test-id="conflict-of-interest-tab"
label="Conflict of Interest" label="Conflict of Interest"
transparent transparent
> >
...@@ -45,11 +45,7 @@ const ManuscriptMetadata = ({ ...@@ -45,11 +45,7 @@ const ManuscriptMetadata = ({
)} )}
{!isEmpty(files) && ( {!isEmpty(files) && (
<Item mb={1}> <Item mb={1}>
<ContextualBox <ContextualBox data-test-id="files-tab" label={filesLabel} transparent>
data-test-id="files-tab-id"
label={filesLabel}
transparent
>
<ManuscriptFileList <ManuscriptFileList
files={files} files={files}
getSignedUrl={getSignedUrl} getSignedUrl={getSignedUrl}
......
...@@ -42,7 +42,7 @@ const Step0 = ({ ...@@ -42,7 +42,7 @@ const Step0 = ({
!isUndefined(initialValues) ? ( !isUndefined(initialValues) ? (
<Fragment> <Fragment>
<Row mb={2} mt={3}> <Row mb={2} mt={3}>
<Item data-test-id="sign-up-first-name-id" mr={1} vertical> <Item data-test-id="sign-up-first-name" mr={1} vertical>
<Label required>First Name</Label> <Label required>First Name</Label>
<ValidatedField <ValidatedField
component={TextField} component={TextField}
...@@ -50,7 +50,7 @@ const Step0 = ({ ...@@ -50,7 +50,7 @@ const Step0 = ({
validate={[requiredValidator]} validate={[requiredValidator]}
/> />
</Item> </Item>
<Item data-test-id="sign-up-last-name-id" ml={1} vertical> <Item data-test-id="sign-up-last-name" ml={1} vertical>
<Label required>Last Name</Label> <Label required>Last Name</Label>
<ValidatedField <ValidatedField
component={TextField} component={TextField}
...@@ -61,7 +61,7 @@ const Step0 = ({ ...@@ -61,7 +61,7 @@ const Step0 = ({
</Row> </Row>
<Row mb={2}> <Row mb={2}>
<ItemOverrideAlert data-test-id="sign-up-title-id" mr={1} vertical> <ItemOverrideAlert data-test-id="sign-up-title" mr={1} vertical>
<Label required>Title</Label> <Label required>Title</Label>
<ValidatedField <ValidatedField
component={input => ( component={input => (
...@@ -75,7 +75,7 @@ const Step0 = ({ ...@@ -75,7 +75,7 @@ const Step0 = ({
validate={[requiredValidator]} validate={[requiredValidator]}
/> />
</ItemOverrideAlert> </ItemOverrideAlert>
<ItemOverrideAlert data-test-id="sign-up-country-id" ml={1} vertical> <ItemOverrideAlert data-test-id="sign-up-country" ml={1} vertical>
<Label required>Country</Label> <Label required>Country</Label>
<ValidatedField <ValidatedField
component={input => ( component={input => (
...@@ -92,7 +92,7 @@ const Step0 = ({ ...@@ -92,7 +92,7 @@ const Step0 = ({
</Row> </Row>
<Row> <Row>
<Item data-test-id="sign-up-affiliation-id" vertical> <Item data-test-id="sign-up-affiliation" vertical>
<Label required>Affiliation</Label> <Label required>Affiliation</Label>
<ValidatedField <ValidatedField
component={TextField} component={TextField}
...@@ -102,7 +102,7 @@ const Step0 = ({ ...@@ -102,7 +102,7 @@ const Step0 = ({
</Item> </Item>
</Row> </Row>
<ValidationRow data-test-id="sign-up-agree-TC-id" mb={2}> <ValidationRow data-test-id="sign-up-agree-TC" mb={2}>
<ValidatedField <ValidatedField
component={AgreeCheckbox} component={AgreeCheckbox}
name="agreeTC" name="agreeTC"
...@@ -124,7 +124,7 @@ const Step0 = ({ ...@@ -124,7 +124,7 @@ const Step0 = ({
</Row> </Row>
<Button <Button
data-test-id="sign-up-proceed-to-set-email-and-password-id" data-test-id="sign-up-proceed-to-set-email-and-password"
mt={4} mt={4}
onClick={handleSubmit} onClick={handleSubmit}
> >
......
...@@ -12,7 +12,7 @@ const EmailField = input => <TextField {...input} type="email" /> ...@@ -12,7 +12,7 @@ const EmailField = input => <TextField {...input} type="email" />
const SignUpForm = () => ( const SignUpForm = () => (
<Fragment> <Fragment>
<Row mb={2}> <Row mb={2}>
<Item data-test-id="sign-up-email-id" vertical> <Item data-test-id="sign-up-email" vertical>
<Label required>Email</Label> <Label required>Email</Label>
<ValidatedField <ValidatedField
component={EmailField} component={EmailField}
...@@ -22,7 +22,7 @@ const SignUpForm = () => ( ...@@ -22,7 +22,7 @@ const SignUpForm = () => (
</Item> </Item>
</Row> </Row>
<Row mb={2}> <Row mb={2}>
<Item data-test-id="sign-up-password-id" vertical> <Item data-test-id="sign-up-password" vertical>
<Label required>Password</Label> <Label required>Password</Label>
<ValidatedField <ValidatedField
component={PasswordField} component={PasswordField}
...@@ -32,7 +32,7 @@ const SignUpForm = () => ( ...@@ -32,7 +32,7 @@ const SignUpForm = () => (
</Item> </Item>
</Row> </Row>
<Row mb={2}> <Row mb={2}>
<Item data-test-id="sign-up-confirm-password-id" vertical> <Item data-test-id="sign-up-confirm-password" vertical>
<Label required>Confirm password</Label> <Label required>Confirm password</Label>
<ValidatedField <ValidatedField
component={PasswordField} component={PasswordField}
...@@ -107,12 +107,12 @@ const Step1 = ({ ...@@ -107,12 +107,12 @@ const Step1 = ({
<Row justify={!withoutBack.includes(type) ? 'space-between' : 'center'}> <Row justify={!withoutBack.includes(type) ? 'space-between' : 'center'}>
{!withoutBack.includes(type) && ( {!withoutBack.includes(type) && (
<Button data-test-id="sign-up-back-button-id" onClick={onBack}> <Button data-test-id="sign-up-back-button" onClick={onBack}>
BACK BACK
</Button> </Button>
)} )}
<Button <Button
data-test-id="sign-up-confirm-button-id" data-test-id="sign-up-confirm-button"
disabled={submitting} disabled={submitting}
onClick={handleSubmit} onClick={handleSubmit}
primary primary
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment