SF Scraper — SuccessFactors Browser Scraping Skill
Scrape employee data from a live, logged-in SAP SuccessFactors session via browser automation.
This skill uses ONLY browser snapshots and actions — zero API calls.
Prerequisites
- User must have SAP SuccessFactors open and logged in on a Chrome tab.
- OpenClaw Browser Relay Chrome extension must be active (badge ON) on that tab.
- Always use
profile="chrome" for all browser calls (we need the authenticated session).
Step-by-Step Workflow
Step 1: Verify Session & Get Base URL
browser(action="snapshot", profile="chrome", compact=true)
Check for these states:
- Login page detected (look for: "Log in", "Username", "Password", "Company ID" fields) → Tell user to log in first and re-attach the relay.
- Session expired ("Session Timeout", "session has expired") → Same, ask user to re-login.
- SF Home/Dashboard → Good. Extract the base URL from the page URL in the snapshot. It will be one of:
https://<company>.successfactors.com
https://<company>.successfactors.eu
https://<company>.sapsf.com
https://pmsalesdemo<N>.successfactors.com (demo instances)
https://hcm<N>preview.sapsf.com (preview instances)
Store the base URL — all subsequent navigation uses it.
Step 2: Navigate to Employee Profile
Try these navigation strategies in order. Move to the next only if the current one fails.
Strategy A: People Profile Deep Link (preferred)
browser(action="navigate", profile="chrome", targetUrl="{base_url}/sf/liveprofile?selected_user={employee_id}")
Wait 2-3 seconds for load, then snapshot. This is the most reliable deep link in modern SF instances.
Success indicators:
- Page contains a heading with a person's name
- You see sections like "Personal Information", "Job Information", "About Me"
- URL contains
liveprofile and the employee ID
Failure indicators:
- Blank page, spinner that never resolves
- "Page not found", "Error", or redirect to home
- Generic dashboard with no employee context
Strategy B: Alternative Deep Links
If Strategy A fails, try these one at a time:
{base_url}/xi/ui/peopleprofile/pages/index.xhtml?selected_user={employee_id}
{base_url}/sf/peopleprofile?selected_user={employee_id}
{base_url}/#/userprofile/{employee_id}
{base_url}/sf/admin/employeefiles?selected_user={employee_id}
Same validation — snapshot after each and check for profile content.
Strategy C: Global Search Bar
If all deep links fail, use the search:
- Snapshot the current page.
- Find the search element. Look for:
- A
searchbox role element (most common)
- A
textbox with placeholder containing "Search", "Search People", "Find Someone"
- An element with aria-label containing "search"
- The magnifying glass icon / search icon button (click it first to expand the search bar)
- Click the search box to focus it.
- Type the employee ID:
browser(action="act", profile="chrome", request={kind: "type", ref: "<search_ref>", text: "{employee_id}"})
- Press Enter or click the search button:
browser(action="act", profile="chrome", request={kind: "press", ref: "<search_ref>", key: "Enter"})
- Wait 2-3 seconds, then snapshot the results.
- Parse the results:
- If one result → click it to open the profile.
- If multiple results → look for the one matching the employee ID. Results typically show as a list with name, ID, and photo. Click the correct one.
- If no results → report to user that employee ID was not found.
Strategy D: Admin Center / Employee Files
Last resort — navigate through menus:
- Navigate to
{base_url}/sf/admin
- Snapshot, look for "Employee Files" or "Manage Employees" link
- Click it, then use the search/filter within that view
- Find and click the employee
Step 3: Handle Page Loading & Iframes
SuccessFactors heavily uses iframes and lazy loading. Critical handling:
Iframe detection:
Lazy loading / SPA transitions:
- SuccessFactors is a Single Page Application. After navigation, content may take 3-5 seconds to render.
- Always snapshot twice if the first snapshot shows loading indicators:
- Loading spinners: look for "Loading", "Please wait", spinner icons, progress bars
- Wait 3 seconds between snapshots
- If still loading after 2 retries (total ~9 seconds), inform user of slow load
Popup/Modal handling:
- SF sometimes shows popups ("What's New", cookie consent, tour prompts)
- If a modal/dialog appears, look for "Close", "X", "Dismiss", "Got it", "Skip" buttons
- Click to dismiss, then re-snapshot
Step 4: Scrape the Profile Page
Once on the employee profile, take a detailed snapshot:
browser(action="snapshot", profile="chrome")
SuccessFactors People Profile has these typical sections/cards:
Header / Banner Area
Contains the most important info, always visible at top:
- Full Name — Large heading text, usually
heading level 1 or 2
- Job Title — Text directly below the name
- Photo — Avatar image (not scrapable as data, but confirms you're on the right profile)
- Employee ID — Sometimes shown near name, sometimes in a subtitle like "ID: 12345"
- Quick action buttons — Email, phone icons (these contain contact data)
Info Cards / Sections (varies by company config)
Each card has a header and key-value pairs. Common patterns:
"Personal Information" / "About" card:
- First Name, Last Name, Middle Name
- Preferred Name / Display Name
- Date of Birth (may be restricted)
- Gender
- Nationality
- Marital Status
"Job Information" card:
- Job Title / Position Title
- Job Code
- Department / Division / Business Unit
- Cost Center
- Employment Type (Full-time, Part-time, etc.)
- Employee Class / Employee Type
- Regular/Temporary
- Standard Hours
- FTE (Full-Time Equivalent)
- Pay Grade
- Worker's Compensation Code
"Employment Details" / "Employment Information" card:
- Hire Date / Original Start Date
- Seniority Date
- Service Date
- Last Date Worked
- Termination Date (if applicable)
- Employment Status (Active, Terminated, Leave, etc.)
"Compensation Information" card (may be restricted):
- Annual Salary / Base Pay
- Pay Component
- Currency
- Compa-Ratio
- Range Penetration
"Contact Information" card:
- Business Email
- Personal Email
- Business Phone
- Mobile Phone
- Home Phone
- Business Address (Street, City, State, Zip, Country)
- Home Address
"Organizational" / "Position" card:
- Manager Name (usually a clickable link)
- Manager ID
- Position
- Direct Reports count
- Legal Entity
- Company Code
"Spot Profile" / "About Me" card:
- Bio / About Me text
- Skills
- Interests
- Social accounts
How to Extract Key-Value Pairs
In the accessibility tree snapshot, profile data appears as:
- Labels —
text or label nodes with the field name (e.g., "Department")
- Values — Adjacent
text, link, or statictext nodes with the value (e.g., "Engineering")
- Pattern: label followed by its value, often in a grid/table or definition list structure
Example snapshot patterns:
text "Department"
text "Engineering"
text "Manager"
link "Jane Smith"
text "Location"
text "Bangalore, India"
text "Email"
link "john.doe@company.com"
Scan sequentially and pair each label with its following value.
Step 5: Navigate Tabs for More Data
SuccessFactors profiles often organize data into tabs or collapsible sections.
Common tab names:
- "Personal Information" / "Personal Info"
- "Job Information" / "Job Info"
- "Employment Information" / "Employment Details"
- "Compensation Information" / "Compensation"
- "Pay Components" / "Pay Details"
- "Organizational Information" / "Organization"
- "Contact Information"
- "Documents"
- "Performance History"
- "Goal Plan"
- "Time Off" / "Leave"
To navigate tabs:
- Snapshot and identify tab elements (role:
tab, tablist, or clickable links with these names)
- Click the tab you need:
browser(action="act", profile="chrome", request={kind: "click", ref: "<tab_ref>"})
- Wait 1-2 seconds for content to load
- Snapshot again and extract the new section's data
Collapsible sections:
- Some profiles use expandable/collapsible sections instead of tabs
- Look for
button elements with section names and expand/collapse indicators
- Click to expand if collapsed, then snapshot
Step 6: Handle "Show More" / Pagination
- Some sections show limited data with a "Show More", "View All", or "See More" link
- Click it if present to reveal full data, then re-snapshot
- Employment history or compensation history may have multiple records — scrape all visible
Step 7: Return Results
Format results clearly, grouped by section:
═══ Employee Profile ═══
👤 Basic Info
Name: John Doe
Employee ID: 12345
Job Title: Senior Developer
Department: Engineering
📧 Contact
Email: john.doe@company.com
Phone: +91-9876543210
Location: Bangalore, India
🏢 Organization
Manager: Jane Smith
Division: Technology
Business Unit: Product Development
Legal Entity: Company India Pvt Ltd
📋 Employment
Hire Date: 2020-03-15
Status: Active
Type: Full-Time Regular
Rules:
- Only include fields actually found on the page — NEVER fabricate data
- If a field's value is empty or hidden ("*****", "Restricted"), report it as restricted
- If the user only asked for a name, don't scrape every tab — just return what's visible in the header
Batch Mode
For multiple employee IDs:
- Process one at a time sequentially
- After each profile, navigate to the next using Strategy A
- Collect all results
- Present as a formatted table at the end
- Note any IDs that failed
Configuration (Optional)
User can add to TOOLS.md:
### SuccessFactors
- Base URL: https://yourcompany.successfactors.com
- Default fields: name, email, department, manager
If configured, use the base URL directly (skip discovery). If default fields are specified, only scrape those.
Error Handling
| Scenario |
Detection |
Action |
| Not logged in |
Login form visible |
Tell user to log in and re-attach relay |
| Session expired |
"Session Timeout" text |
Same as above |
| Employee not found |
Search returns 0 results |
Report clearly, suggest checking ID |
| Access denied |
"Unauthorized", "No access", "Insufficient privileges" |
Report — user may lack permissions |
| Profile restricted |
Fields show "*****" or "Restricted" |
Report which fields are restricted |
| Page won't load |
Loading spinner after 3 retries |
Report timeout, suggest refreshing SF |
| Multiple matches |
Search returns >1 result |
List matches with names/IDs, ask user to pick |
| Wrong instance |
URL doesn't match expected SF domain |
Warn user, ask to confirm |
Important Notes
- NEVER use OData, REST API, or any programmatic endpoint. Pure browser scraping only.
- Always use
profile="chrome" — never profile="openclaw" (need the user's auth session).
- Be patient — SF can be slow. Always verify page state with snapshots before extracting.
- Don't navigate away from SF without warning the user.
- Respect permissions — if data is restricted/hidden in the UI, it's restricted for a reason. Don't try to circumvent.
- Screenshot fallback — if snapshot (accessibility tree) doesn't capture visible text, use
browser(action="screenshot", profile="chrome") to see the rendered page visually and extract from the image.
1---2name: sf-scraper3description: Scrape employee data from a logged-in SAP SuccessFactors browser session using browser automation. Use when: user provides an employee ID and wants employee details (name, email, department, manager, etc.) scraped directly from the SuccessFactors UI — NOT via OData/API. Requires the user to have SuccessFactors open and logged in via Chrome with the OpenClaw Browser Relay extension attached. Triggers on: "get employee name", "look up employee", "scrape SF", "find employee in SuccessFactors", or any request combining an employee ID with SuccessFactors data lookup.4---56# SF Scraper — SuccessFactors Browser Scraping Skill78Scrape employee data from a live, logged-in SAP SuccessFactors session via browser automation.9This skill uses ONLY browser snapshots and actions — zero API calls.1011## Prerequisites1213- User must have SAP SuccessFactors open and logged in on a Chrome tab.14- OpenClaw Browser Relay Chrome extension must be active (badge ON) on that tab.15- **Always** use `profile="chrome"` for all browser calls (we need the authenticated session).1617## Step-by-Step Workflow1819### Step 1: Verify Session & Get Base URL2021```22browser(action="snapshot", profile="chrome", compact=true)23```2425**Check for these states:**2627- **Login page detected** (look for: "Log in", "Username", "Password", "Company ID" fields) → Tell user to log in first and re-attach the relay.28- **Session expired** ("Session Timeout", "session has expired") → Same, ask user to re-login.29- **SF Home/Dashboard** → Good. Extract the base URL from the page URL in the snapshot. It will be one of:30 - `https://<company>.successfactors.com`31 - `https://<company>.successfactors.eu`32 - `https://<company>.sapsf.com`33 - `https://pmsalesdemo<N>.successfactors.com` (demo instances)34 - `https://hcm<N>preview.sapsf.com` (preview instances)3536Store the base URL — all subsequent navigation uses it.3738### Step 2: Navigate to Employee Profile3940Try these navigation strategies **in order**. Move to the next only if the current one fails.4142#### Strategy A: People Profile Deep Link (preferred)4344```45browser(action="navigate", profile="chrome", targetUrl="{base_url}/sf/liveprofile?selected_user={employee_id}")46```4748Wait 2-3 seconds for load, then snapshot. This is the most reliable deep link in modern SF instances.4950**Success indicators:**51- Page contains a heading with a person's name52- You see sections like "Personal Information", "Job Information", "About Me"53- URL contains `liveprofile` and the employee ID5455**Failure indicators:**56- Blank page, spinner that never resolves57- "Page not found", "Error", or redirect to home58- Generic dashboard with no employee context5960#### Strategy B: Alternative Deep Links6162If Strategy A fails, try these one at a time:6364```65{base_url}/xi/ui/peopleprofile/pages/index.xhtml?selected_user={employee_id}66{base_url}/sf/peopleprofile?selected_user={employee_id}67{base_url}/#/userprofile/{employee_id}68{base_url}/sf/admin/employeefiles?selected_user={employee_id}69```7071Same validation — snapshot after each and check for profile content.7273#### Strategy C: Global Search Bar7475If all deep links fail, use the search:76771. **Snapshot** the current page.782. **Find the search element.** Look for:79 - A `searchbox` role element (most common)80 - A `textbox` with placeholder containing "Search", "Search People", "Find Someone"81 - An element with aria-label containing "search"82 - The magnifying glass icon / search icon button (click it first to expand the search bar)833. **Click** the search box to focus it.844. **Type** the employee ID:85 ```86 browser(action="act", profile="chrome", request={kind: "type", ref: "<search_ref>", text: "{employee_id}"})87 ```885. **Press Enter** or click the search button:89 ```90 browser(action="act", profile="chrome", request={kind: "press", ref: "<search_ref>", key: "Enter"})91 ```926. **Wait 2-3 seconds**, then snapshot the results.937. **Parse the results:**94 - If one result → click it to open the profile.95 - If multiple results → look for the one matching the employee ID. Results typically show as a list with name, ID, and photo. Click the correct one.96 - If no results → report to user that employee ID was not found.9798#### Strategy D: Admin Center / Employee Files99100Last resort — navigate through menus:1011021. Navigate to `{base_url}/sf/admin`1032. Snapshot, look for "Employee Files" or "Manage Employees" link1043. Click it, then use the search/filter within that view1054. Find and click the employee106107### Step 3: Handle Page Loading & Iframes108109SuccessFactors heavily uses iframes and lazy loading. Critical handling:110111**Iframe detection:**112- After navigating, if the snapshot shows minimal content or an iframe structure, try:113 ```114 browser(action="snapshot", profile="chrome", compact=true, frame="main")115 ```116- Common iframe names/ids in SF: `"main"`, `"contentFrame"`, `"bizmuleApp"`, `"xCalApp"`117- If `frame` doesn't work, take a full (non-compact) snapshot to see the full DOM tree118119**Lazy loading / SPA transitions:**120- SuccessFactors is a Single Page Application. After navigation, content may take 3-5 seconds to render.121- **Always snapshot twice** if the first snapshot shows loading indicators:122 - Loading spinners: look for "Loading", "Please wait", spinner icons, progress bars123 - Wait 3 seconds between snapshots124 - If still loading after 2 retries (total ~9 seconds), inform user of slow load125126**Popup/Modal handling:**127- SF sometimes shows popups ("What's New", cookie consent, tour prompts)128- If a modal/dialog appears, look for "Close", "X", "Dismiss", "Got it", "Skip" buttons129- Click to dismiss, then re-snapshot130131### Step 4: Scrape the Profile Page132133Once on the employee profile, take a detailed snapshot:134135```136browser(action="snapshot", profile="chrome")137```138139**SuccessFactors People Profile has these typical sections/cards:**140141#### Header / Banner Area142Contains the most important info, always visible at top:143- **Full Name** — Large heading text, usually `heading` level 1 or 2144- **Job Title** — Text directly below the name145- **Photo** — Avatar image (not scrapable as data, but confirms you're on the right profile)146- **Employee ID** — Sometimes shown near name, sometimes in a subtitle like "ID: 12345"147- **Quick action buttons** — Email, phone icons (these contain contact data)148149#### Info Cards / Sections (varies by company config)150Each card has a header and key-value pairs. Common patterns:151152**"Personal Information" / "About" card:**153- First Name, Last Name, Middle Name154- Preferred Name / Display Name155- Date of Birth (may be restricted)156- Gender157- Nationality158- Marital Status159160**"Job Information" card:**161- Job Title / Position Title162- Job Code163- Department / Division / Business Unit164- Cost Center165- Employment Type (Full-time, Part-time, etc.)166- Employee Class / Employee Type167- Regular/Temporary168- Standard Hours169- FTE (Full-Time Equivalent)170- Pay Grade171- Worker's Compensation Code172173**"Employment Details" / "Employment Information" card:**174- Hire Date / Original Start Date175- Seniority Date176- Service Date177- Last Date Worked178- Termination Date (if applicable)179- Employment Status (Active, Terminated, Leave, etc.)180181**"Compensation Information" card (may be restricted):**182- Annual Salary / Base Pay183- Pay Component184- Currency185- Compa-Ratio186- Range Penetration187188**"Contact Information" card:**189- Business Email190- Personal Email191- Business Phone192- Mobile Phone193- Home Phone194- Business Address (Street, City, State, Zip, Country)195- Home Address196197**"Organizational" / "Position" card:**198- Manager Name (usually a clickable link)199- Manager ID200- Position201- Direct Reports count202- Legal Entity203- Company Code204205**"Spot Profile" / "About Me" card:**206- Bio / About Me text207- Skills208- Interests209- Social accounts210211#### How to Extract Key-Value Pairs212213In the accessibility tree snapshot, profile data appears as:214- **Labels** — `text` or `label` nodes with the field name (e.g., "Department")215- **Values** — Adjacent `text`, `link`, or `statictext` nodes with the value (e.g., "Engineering")216- Pattern: label followed by its value, often in a grid/table or definition list structure217218Example snapshot patterns:219```220text "Department"221text "Engineering"222text "Manager"223link "Jane Smith"224text "Location"225text "Bangalore, India"226text "Email"227link "john.doe@company.com"228```229230Scan sequentially and pair each label with its following value.231232### Step 5: Navigate Tabs for More Data233234SuccessFactors profiles often organize data into tabs or collapsible sections.235236**Common tab names:**237- "Personal Information" / "Personal Info"238- "Job Information" / "Job Info" 239- "Employment Information" / "Employment Details"240- "Compensation Information" / "Compensation"241- "Pay Components" / "Pay Details"242- "Organizational Information" / "Organization"243- "Contact Information"244- "Documents"245- "Performance History"246- "Goal Plan"247- "Time Off" / "Leave"248249**To navigate tabs:**2501. Snapshot and identify tab elements (role: `tab`, `tablist`, or clickable links with these names)2512. Click the tab you need:252 ```253 browser(action="act", profile="chrome", request={kind: "click", ref: "<tab_ref>"})254 ```2553. Wait 1-2 seconds for content to load2564. Snapshot again and extract the new section's data257258**Collapsible sections:**259- Some profiles use expandable/collapsible sections instead of tabs260- Look for `button` elements with section names and expand/collapse indicators261- Click to expand if collapsed, then snapshot262263### Step 6: Handle "Show More" / Pagination264265- Some sections show limited data with a "Show More", "View All", or "See More" link266- Click it if present to reveal full data, then re-snapshot267- Employment history or compensation history may have multiple records — scrape all visible268269### Step 7: Return Results270271Format results clearly, grouped by section:272273```274═══ Employee Profile ═══275276👤 Basic Info277 Name: John Doe278 Employee ID: 12345279 Job Title: Senior Developer280 Department: Engineering281 282📧 Contact283 Email: john.doe@company.com284 Phone: +91-9876543210285 Location: Bangalore, India286 287🏢 Organization288 Manager: Jane Smith289 Division: Technology290 Business Unit: Product Development291 Legal Entity: Company India Pvt Ltd292 293📋 Employment294 Hire Date: 2020-03-15295 Status: Active296 Type: Full-Time Regular297```298299**Rules:**300- Only include fields actually found on the page — NEVER fabricate data301- If a field's value is empty or hidden ("*****", "Restricted"), report it as restricted302- If the user only asked for a name, don't scrape every tab — just return what's visible in the header303304## Batch Mode305306For multiple employee IDs:3071. Process one at a time sequentially3082. After each profile, navigate to the next using Strategy A3093. Collect all results3104. Present as a formatted table at the end3115. Note any IDs that failed312313## Configuration (Optional)314315User can add to `TOOLS.md`:316```markdown317### SuccessFactors318- Base URL: https://yourcompany.successfactors.com319- Default fields: name, email, department, manager320```321322If configured, use the base URL directly (skip discovery). If default fields are specified, only scrape those.323324## Error Handling325326| Scenario | Detection | Action |327|----------|-----------|--------|328| Not logged in | Login form visible | Tell user to log in and re-attach relay |329| Session expired | "Session Timeout" text | Same as above |330| Employee not found | Search returns 0 results | Report clearly, suggest checking ID |331| Access denied | "Unauthorized", "No access", "Insufficient privileges" | Report — user may lack permissions |332| Profile restricted | Fields show "*****" or "Restricted" | Report which fields are restricted |333| Page won't load | Loading spinner after 3 retries | Report timeout, suggest refreshing SF |334| Multiple matches | Search returns >1 result | List matches with names/IDs, ask user to pick |335| Wrong instance | URL doesn't match expected SF domain | Warn user, ask to confirm |336337## Important Notes338339- **NEVER use OData, REST API, or any programmatic endpoint.** Pure browser scraping only.340- **Always use `profile="chrome"`** — never `profile="openclaw"` (need the user's auth session).341- **Be patient** — SF can be slow. Always verify page state with snapshots before extracting.342- **Don't navigate away** from SF without warning the user.343- **Respect permissions** — if data is restricted/hidden in the UI, it's restricted for a reason. Don't try to circumvent.344- **Screenshot fallback** — if snapshot (accessibility tree) doesn't capture visible text, use `browser(action="screenshot", profile="chrome")` to see the rendered page visually and extract from the image.