PulsarRPA
PulsarRPA copied to clipboard
Automate webpages at scale, scrape web data completely and accurately with high performance, distributed RPA.
Add WebDriver.chat(), so we can talk to the webpage when we interact with it.
If so, how can I do it in PulsarRPA? Thanks!
CDP upgraded and failed to serialize ResponseReceivedExtraInfo since Google Chrome 127. Exception: ``` com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.lang.String` from Object value (token `JsonToken.START_OBJECT`) at [Source: UNKNOWN; byte offset:...
We need parse dates from natural language text: ```java String text = "Let's meet next Friday for coffee."; Parser parser = new Parser(); List groups = parser.parse(text); ``` ### Popular...
Add new load option `-priority`, so the priority can be applied for each task.
Use line filters when extracting links from a Java resource or a file using LinkExtractors. ``` LinkExtractors.fromResource(resource).filter { it.contains("Pet Supplies") } ```
## 环境 - pulsar-all版本:1.13.2-SNAPSHOT - 浏览器:google-chrome-stable-127.0.6533.99-1.x86_64.rpm ## 关键业务代码 ```java PulsarSession session = PulsarContexts.createSession(); LoadOptions options = session.options("-parse -refresh"); options.getEvent().getBrowseEventHandlers().getOnDocumentActuallyReady().addLast((page, driver, other) -> { FeaturedDocument loadDocument = session.parse(page); CheckStatus checkStatus =...