We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff40e7 commit 53b8e44Copy full SHA for 53b8e44
src/main/java/com/olegshan/parser/siteparsers/RabotaUaJobParser.java
@@ -36,6 +36,12 @@ public Elements getTitleBlock(Element job) throws ParserException {
36
return titleBlock;
37
}
38
39
+ @Override
40
+ public String getDescription(Element job, String url) throws ParserException {
41
+ String[] descriptionData = jobSite.getDescriptionData();
42
+ return job.getElementsByAttributeValueStarting(descriptionData[0], descriptionData[1]).text();
43
+ }
44
+
45
@Override
46
public String getCompany(Element job, String url) throws ParserException {
47
String company = job.getElementsByAttributeValueStarting(jobSite.getCompanyData()[0], jobSite.getCompanyData()[1]).text();
0 commit comments