API Reference
Navigate

Navigate Action API Reference ๐ŸŒ

Introduction ๐Ÿ“š

The Navigate action is used to navigate to a specific URL. This is part of the core package in Go-Ski.

Syntax ๐Ÿ“

Here's how you define a Navigate action:

Action{
Type: core.Navigate,
URL: "https://www.example.com",
}

Parameters ๐Ÿ› ๏ธ

  • Type: Should be set to core.Navigate.
  • URL: The URL you want to navigate to.

Example ๐ŸŒŸ

Here's a simple example that navigates to a website:

Action{
Type: core.Navigate,
URL: "https://www.example.com",
}

Conclusion ๐ŸŽ‰

The Navigate action allows you to easily move to different web pages, making it a fundamental part of web scraping with Go-Ski.

For the complete example, you can check out the Go-Ski GitHub Repository (opens in a new tab).