REFramework 질문!

  1. 기본 QueueItem 으로 되어있는 type을 type을 String으로 바꾸려면 어떻게 해야 하나요?

  2. 테이블을 스크래핑 해야 하는데, 이 프로세스가 동작하는 시퀀스를 Process Transction에 만드는게 맞나요?

  3. 테이블 스크래핑 프로세스를 Process Transcation에 만들면 Get Transction Data 구간을 통과하기 위해서 어떤 일을 해줘야 하나요?

  • 첫번째 페이지 스크래핑을 Init에 만들어서 실행 후 Transction Data를 얻고 두번째 페이지부터 Process Transction에 만들어야 하나요?

답변 부탁드립니다.

감사합니다.

2 Likes

You have to change in the variables panel as well as the arguments panel of invoked activities.

  1. You have to check if page exists or not in the get_transaction.

  2. If exists, you have to scrape the data in the process transaction.

Regards,
Karthik Byggari

1 Like

안녕하세요
제가 정리해 놓은 Robotic Enterprise Framework 자료가 있는데 공유해 드립니다.

REFramework은 기본적으로 여러건의 transaction을 처리하도록 구성된 framework 입니다.
만약 Data Scraping만 하는 workflow를 만들려고 하신다면 처음부터 간단하게 Sequeuce로 만드시는게 나을것 같습니다.
만약 Data Scraping한 내용을 처리해야 하는 형태라면,
Init 부분에서 Data Scraping을 처리하고 해당 내용을 Queue에 추가한 다음에
Get Transaction Data에서는 Queue에 추가된 항목을 하나씩 가져와서
Process Transaction 부분에서 하나씩 처리하도록 만들면 될것 같습니다.

간단한 Workflow 를 만드실 거라면 굳이 REFramework을 사용하지 않으셔도 되지 않을까 생각합니다.

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.