Skip to content

Commit

Permalink
feat: proof-read some texts
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Dec 15, 2024
1 parent 7c7e39f commit 9dc13fd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"cSpell.words": [
"Alumnium",
"alumnium"
],
"editor.defaultFormatter": "esbenp.prettier-vscode"
"cSpell.words": ["Alumnium", "alumnium"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
}
}
8 changes: 4 additions & 4 deletions src/components/FeaturesBlock.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import WrenchIcon from "./icons/Wrench.astro";
</dt>
<dd class="mt-1 flex flex-auto flex-col text-base/7 text-gray-600 dark:text-gray-300">
<p class="flex-auto">
Leverage the full power and capabilities of LLMs and eliminate syntax headaches with
natural-language-to-code translation.
Leveraging the full power of LLMs, Alumnium eliminates testing headaches with natural-language-to-code
translation.
</p>
</dd>
</div>
Expand All @@ -55,7 +55,7 @@ import WrenchIcon from "./icons/Wrench.astro";
</dt>
<dd class="mt-1 flex flex-auto flex-col text-base/7 text-gray-600 dark:text-gray-300">
<p class="flex-auto">
Any test framework on Python support today, with JavaScript/TypeScript, Ruby, and more in the pipeline.
Alumnium supports any Python test framework today, with JavaScript, Ruby, and more in the works.
</p>
</dd>
</div>
Expand All @@ -68,7 +68,7 @@ import WrenchIcon from "./icons/Wrench.astro";
</dt>
<dd class="mt-1 flex flex-auto flex-col text-base/7 text-gray-600 dark:text-gray-300">
<p class="flex-auto">
Written by software and QA engineers alike, so you can build reliable tests without sacrificing your
Written by software and QA engineers, Aluminum helps you build reliable tests without sacrificing your
expertise.
</p>
</dd>
Expand Down
2 changes: 1 addition & 1 deletion src/components/GetNotified.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<h2
class="max-w-xl text-balance text-3xl font-semibold tracking-tight text-text-light dark:text-text-dark sm:text-4xl lg:col-span-7"
>
Get notified when we’re launching our Pro version
Get notified when we’re launching Alumnium Pro
</h2>
<form
class="w-full max-w-md lg:col-span-5 lg:pt-2"
Expand Down
2 changes: 1 addition & 1 deletion src/components/IntegratesWith.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import meta from "../assets/meta.svg";
<div class="mx-auto max-w-7xl">
<h2 class="text-center text-lg/8 font-semibold text-text-light dark:text-text-dark">Integrates with</h2>
<div class="mx-auto mt-6 lg:mt-10 max-w-none gap-x-10 gap-y-10 flex justify-center items-center flex-wrap">
<Logo src={anthropic.src} alt="Anthropic" />
<Logo src={anthropic.src} alt="Anthropic" />
<Logo src={gemini.src} alt="Google Gemini" className="pb-4" />
<Logo src={openaiLockup.src} alt="OpenAI" className="h-10" />
<Logo src={meta.src} alt="Meta Llama" className="h-6" />
Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ import GetNotified from "../../components/GetNotified.astro";
## How it works

<Card title="Write Human-Readable Instructions" icon="pencil">
Write your test case instructions in plain language with test framework you like. Alumnium provides 2 types of
commands: `do` and `check`. Use `do` to describe the steps to <b>do</b>. Use `check` to verify the <b>results</b>.
Write your test case instructions in plain language with test framework you like. Alumnium provides two types of commands: `do` and `check`. Use `do` to describe the steps to <b>perform</b>, and use `check` to verify the <b>results</b>.

```python title="todo_test.py"
al.do("create task 'buy milk'")
Expand All @@ -47,8 +46,9 @@ al.check("task 'buy milk' is completed")

<LinkButton href="/docs/getting-started/writing-first-test" variant="secondary">Write your first test</LinkButton>
</Card>

<Card title="AI-Powered Test Execution" icon="translate">
Alumnium’s AI interprets your instructions, generates Selenium code and executes browser interactions. It works with the web page's accessibility tree and a screenshot in case it's no enough.
Aluminum's AI interprets your instructions to generate Selenium code, which it then uses to execute browser interactions. This process utilizes the web page's accessibility tree and, if needed, a screenshot. Aluminum works with popular AI providers like Anthropic, Google Gemini, OpenAI, and Meta Llama.

{" "}

Expand Down

0 comments on commit 9dc13fd

Please sign in to comment.