You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/accessibility-settings-ios.md
+22-52Lines changed: 22 additions & 52 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,59 +47,29 @@ This document outlines the requirements and testing procedures for accessibility
47
47
## Accessibility Settings
48
48
The following features are essential to test when ensuring accessibility for mobile apps and web content on iOS devices:
49
49
50
-
### Text Size Adjustment
51
-
-**Requirements :** Implementation of a dropdown menu with size options or a slider control for the text size.
52
-
-**Functionality :**
53
-
-**1. Real-time Updates :**
54
-
- Text size changes must apply immediately
55
-
- All text elements should scale proportionally
56
-
- No application restart required
57
-
-**2. Visual Feedback :**
58
-
- Loading indicator must display during backend updates
59
-
- Success notification required after completion
60
-
-**Testing Checklist :**
61
-
- ✅ Control interface is easily accessible
62
-
- ✅ Text scaling occurs in real-time
63
-
- ✅ Loading animation displays during updates
64
-
- ✅ Success notification appears after completion
65
-
- ✅ All application text responds to size changes
66
-
- ✅ No text overlap or truncation occurs
50
+
### Display and Text Size
51
+
This section focuses on improving text visibility and contrast to assist users with visual needs.
67
52
68
-
### Contrast Adjustment
69
-
-**Requirements :** Implementation of a high-contrast mode toggle and Binary selection (normal/high contrast)
70
-
-**Functionality :**
71
-
-**1. Toggle Implementation :**
72
-
- Single switch interface
73
-
- Clear visual indication of current state
74
-
-**2. Real-time Updates :**
75
-
- Immediate contrast changes
76
-
- System-wide application within the app
77
-
-**3. Visual Feedback :**
78
-
- Loading indicator during backend processing
79
-
- Success notification upon completion
80
-
-**Testing Checklist :**
81
-
- ✅ Toggle is accessible and clearly labeled
82
-
- ✅ Contrast changes apply immediately
83
-
- ✅ Loading animation displays during processing
84
-
- ✅ Success notification appears after completion
85
-
- ✅ All UI elements reflect contrast changes
86
-
- ✅ Text remains readable in both states
53
+
#### Key Features:
54
+
-**Increase Contrast :** Enabling this option enhances the contrast of UI elements against the background, making text and interface components easier to see.
55
+
56
+
-**Smart Invert :** This option reverses colors on the display, except for media and images. It's designed for users who prefer darker backgrounds without inverting every color on the screen.
57
+
58
+
-**Larger Accessibility Settings :** When enabled, this option adjusts interface elements to be larger and more accessible without affecting the core layout of the device’s UI.
59
+
60
+
-**Text Size Adjustment :** A slider is provided to adjust the size of the text throughout the system. Users can move the slider to the right for larger text and to the left for smaller text. This feature benefits users who need larger fonts for readability across apps and system interfaces.
-**Requirements :** Implementation of motion reduction toggle and integration with iOS accessibility settings.
90
-
-**Functionality :**
91
-
-**1. Motion Control :**
92
-
- Single toggle interface
93
-
- Simplified animation transitions
94
-
- Reduced motion alternatives
95
-
-**2. Visual Feedback :**
96
-
- Success notification upon setting update
97
-
-**Testing Checklist :**
98
-
- ✅ Toggle is accessible and functional
99
-
- ✅ Animations are simplified when enabled
100
-
- ✅ Transitions use motion-reduced alternatives
101
-
- ✅ Success notification appears after toggle
102
-
- ✅ Settings persist across app sessions
103
-
- ✅ No jarring visual effects present
65
+
66
+
The Reduce Motion setting is designed to minimize dynamic animations and motion effects. This can benefit users sensitive to motion or those who prefer a more static display.
67
+
68
+
#### Key Features:
69
+
-**Reduce Motion of User Interface :** This toggle reduces animations throughout the system, including the parallax effect of icons on the Home Screen and in-app transitions.
70
+
-**Parallax Effect Adjustment :** Disabling parallax can create a more stable and comfortable experience, particularly for users prone to motion sickness.
Testing these accessibility features on iOS devices ensures that mobile apps and web content are inclusive and user-friendly for individuals with various accessibility needs. Implementing real-time changes, visual feedback (loaders/animations), and notifications for updates enhances the user experience and compliance with accessibility standards.
75
+
These accessibility settings allow iOS users to customize their device’s interface to match individual needs, improving usability and comfort. Whether adjusting text size or reducing motion,
Maintaining consistent versions across testing frameworks in your project setup is crucial to avoid runtime errors, compatibility issues, and unexpected behaviors. This guide focuses on specifying framework versions in YAML configuration files and aligning them with the version details in project-specific files like `package.json`, `pom.xml`, `.csproj`, and system environment variables for frameworks like Selenium, Playwright, Puppeteer, Cypress, Maestro, and Appium.
39
+
40
+
## Why Version Consistency Matters
41
+
When versions defined in YAML configuration files do not match those in project files, it can lead to:
42
+
43
+
-**Dependency Conflicts :** Incompatibility between framework components, leading to failures.
44
+
-**Runtime Errors :** Unexpected crashes or malfunctions during test execution.
45
+
-**Inconsistent Test Results :** Version mismatches can produce different outcomes or misbehave in automated test cases.
46
+
To prevent these issues, it is recommended to ensure that framework versions match between the YAML pre-steps and project files.
47
+
48
+
## Framework-Specific Guidelines
49
+
This section provides detailed instructions for version consistency across different frameworks.
50
+
51
+
### Selenium - Java
52
+
For Java projects using Selenium, TestNG and Cucumber dependencies should match between the YAML pre-steps and the pom.xml file.
53
+
54
+
-**TestNG :** Ensure the TestNG version in your `pom.xml` matches the version specified in the YAML configuration under [`pre-steps`](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#pre):
55
+
```xml
56
+
<dependency>
57
+
<groupId>org.testng</groupId>
58
+
<artifactId>testng</artifactId>
59
+
<version>7.5</version>
60
+
<scope>test</scope>
61
+
</dependency>
62
+
```
63
+
64
+
> Always verify compatibility between Java and TestNG versions as specified in TestNG's documentation to avoid compatibility conflicts.
For JavaScript frameworks like Selenium, Playwright, Puppeteer, and Cypress, the framework versions specified in the YAML configuration should align with `package.json`:
68
+
69
+
```json
70
+
{
71
+
"dependencies": {
72
+
"selenium-webdriver": "4.1.0",
73
+
"cypress": "9.5.0",
74
+
"playwright": "1.15.0"
75
+
}
76
+
}
77
+
```
78
+
79
+
Consistency ensures dependencies are installed with the expected versions, avoiding issues like dependency mismatch and incompatible libraries.
80
+
81
+
### Selenium/Playwright - C# (.NET)
82
+
For .NET projects, Selenium and Playwright versions should match between the YAML pre-steps and the `.csproj` file, which specifies NuGet packages:
Copy file name to clipboardExpand all lines: docs/testim-integration.md
+2-17Lines changed: 2 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
id: testim-integration
3
3
title: Testim Integration
4
-
hide_title: true
4
+
hide_title: false
5
5
sidebar_label: Testim
6
6
description: LambdaTest offers integration with Testim to help you perform automated browser testing on 3000+ real browsers and OS.
7
7
keywords:
@@ -39,24 +39,16 @@ slug: testim-integration/
39
39
})
40
40
}}
41
41
></script>
42
-
43
-
# Testim Integration
44
-
***
45
-
46
42
Testim provides an automated testing platform to create stable tests using AI-powered capabilities, along with tools that facilitate scaling quality across your software development process.
47
43
48
44
Integrating LambdaTest with Testim lets you run Testim automated tests on LambdaTest cloud-based grid across 3000+ real browsers and OS.
49
45
50
46
## Prerequisites
51
-
---
52
-
53
47
- Create an account on Testim.
54
48
- Create a LambdaTest account. You can [sign up for free](https://accounts.lambdatest.com/dashboard).
55
49
- Get your LambdaTest Username and Access Key.
56
50
57
51
## Setting Up the Grid
58
-
---
59
-
60
52
Shown below are the steps to set up your Grid on Testim.
61
53
62
54
1. Click on your profile icon > **Grids** button.
@@ -73,8 +65,6 @@ Shown below are the steps to set up your Grid on Testim.
73
65
</video>
74
66
75
67
## Recording the Tests
76
-
---
77
-
78
68
Shown below are the steps to record your tests on Testim.
79
69
80
70
1. Click on **New Test** > **Start Recording**.
@@ -88,8 +78,6 @@ Shown below are the steps to record your tests on Testim.
88
78
</video>
89
79
90
80
## Configuring the Capabilities
91
-
---
92
-
93
81
Include the capabilities you wish to use in a `.json` file and ensure this file is located in the same directory as your Testim runner.
94
82
95
83
```json
@@ -101,8 +89,6 @@ Include the capabilities you wish to use in a `.json` file and ensure this file
101
89
```
102
90
103
91
## Running the Testim Tests on LambdaTest
104
-
---
105
-
106
92
To execute the tests, check:
107
93
108
94
* If the Testim CLI is not already installed on your system, use the entire command provided by the Testim CLI or dashboard.
@@ -125,5 +111,4 @@ To view your test results, navigate to the LambdaTest Web Automation Dashboard.
**Note**: To explore additional configuration options, you can execute `testim --help` in PowerShell or bash, which will display further customizations available for writing and executing your test cases.
114
+
> **Note**: To explore additional configuration options, you can execute `testim --help` in PowerShell or bash, which will display further customizations available for writing and executing your test cases.
0 commit comments