Skip to content

Commit 5b1a093

Browse files
committed
Merge branch 'release/4.1.0'
2 parents d93efa6 + f801701 commit 5b1a093

File tree

31 files changed

+195
-192
lines changed

31 files changed

+195
-192
lines changed

dotnet-csharp/automate_mobile_profiles_on_desktop/AutomateMobileProfilesOnDesktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
<PackageReference Include="Selenium.WebDriver" Version="4.31.0" />
1111
</ItemGroup>
1212

dotnet-csharp/automate_mobile_profiles_on_desktop/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
// Use any WebDriver command to drive the browser
5050
// and enjoy full protection from bot detection products
51-
webdriver.Navigate().GoToUrl("https://wikipedia.org");
51+
await webdriver.Navigate().GoToUrlAsync("https://wikipedia.org");
5252
webdriver.FindElement(By.Name("search")).SendKeys("Chameleon");
5353
webdriver.FindElement(By.Name("search")).SendKeys(Keys.Enter);
5454
webdriver.FindElement(By.Id("content"));

dotnet-csharp/basic_profile_operations/BasicProfileOperations.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
</ItemGroup>
1111

1212
</Project>

dotnet-csharp/basic_profile_operations/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464

6565
Console.WriteLine($"Profile '{duplicatedProfile.Name}' is created");
6666

67-
// Change every property that you want to update on the duplicate profile
68-
// Others should be the same
67+
// Change every property that you want to update on the duplicated profile
68+
// Send the update request and the response will be your updated profile
6969
var updateProfileRequest = new UpdateProfileRequest()
7070
{
7171
Name = "duplicate profile example",

dotnet-csharp/clean_workspace/CleanWorkspace.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
</ItemGroup>
1111

1212
</Project>

dotnet-csharp/connect_with_playwright_to_chrome/ConnectWithPlaywrightToChrome.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
<PackageReference Include="Microsoft.Playwright" Version="1.48.0" />
1111
</ItemGroup>
1212

dotnet-csharp/connect_with_playwright_to_firefox/ConnectWithPlaywrightToFirefox.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
<PackageReference Include="Microsoft.Playwright" Version="1.48.0" />
1111
</ItemGroup>
1212

dotnet-csharp/connect_with_puppeteer/ConnectWithPuppeteer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
<PackageReference Include="PuppeteerSharp" Version="20.0.5" />
1111
</ItemGroup>
1212

dotnet-csharp/connect_with_selenium/ConnectWithSelenium.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Kameleo.LocalApiClient" Version="4.0.0" />
9+
<PackageReference Include="Kameleo.LocalApiClient" Version="4.1.0" />
1010
<PackageReference Include="Selenium.WebDriver" Version="4.31.0" />
1111
</ItemGroup>
1212

dotnet-csharp/connect_with_selenium/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
// Use any WebDriver command to drive the browser
3636
// and enjoy full protection from bot detection products
37-
webdriver.Navigate().GoToUrl("https://wikipedia.org");
37+
await webdriver.Navigate().GoToUrlAsync("https://wikipedia.org");
3838
webdriver.FindElement(By.Name("search")).SendKeys("Chameleon");
3939
webdriver.FindElement(By.Name("search")).SendKeys(Keys.Enter);
4040
webdriver.FindElement(By.Id("content"));

0 commit comments

Comments
 (0)