Skip to content

Commit

Permalink
Logo added
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashish authored and Ashish committed Aug 20, 2024
1 parent ae69d94 commit 5b2ceee
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/additionalfeatures.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
![search](img/Things/cellsearch.png "search")


* To search for **Columns using the Column Header**, simply enter the search string (or even partial string) in the [Search Bar], and the search results will immediately show in green
* To search for **Columns using the Column Header**, simply enter the search string (or even partial string) with '@' as prefix in the [Search Bar], and the search results will immediately show in green

![search](img/Things/colheadersearch.png "search")

Expand Down Expand Up @@ -218,7 +218,7 @@
* Consider any action that requires **Input** column. For instance let us take the **Print** action. Instead of providing the URL directly, you can concatenate two strings that lead to the URL.


| **Function** | **Syntax** | **Description** |
| <div style="width:150px">**Function**</div> | <div style="width:250px">**Syntax**</div> | **Description** |
| --------------| ---------------- |-------------- |
| [`=Round`](#) | =Round(Decimal Number) |Will **Round Off** the given decimal number |
| [`=Pow`](#) | =Pow(a,b) |Will return the value of **a^b** |
Expand Down
2 changes: 1 addition & 1 deletion docs/customizations/customfunction.md
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public class SampleScript extends General {
addVar("%nameVar%", "LukeSkywalker");
```

>> The scope of this variable is only till the end of the execution of the test case in which it is defined.
> The scope of this variable is only till the end of the execution of the test case in which it is defined.

The **`addGlobalVar(arg1,arg2)`** function is used to add a value to a variable whose scope is till the end of the execution of the testset i.e. till the end of execution of the last test case under the test set. This function can be used in your custom code as
shown below:
Expand Down
Binary file added docs/img/logo/SmallLogoWhite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Developed and perfected by <span style="color:#FF6200;width:100px">**ING Bank**<

<span style="color:#FF6200">INGenious</span> leverages the power of **Playwright** to create robust and stable browser tests.

[:octicons-arrow-right-24: Browser Testing](BrowserTesting/)
[:octicons-arrow-right-24: Browser Testing](browsertesting/)

- :material-api:{ .lg .middle .cicd} __API Automation__

Expand Down
4 changes: 2 additions & 2 deletions docs/knowyourframework.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

To make working simple, intuitive and easy, you can also use the **drag and drop** to create test steps.

In the following example, we can create the *Checkout* Reusable simply by **dragging and dropping the objects** from the Object Repository and parameterizing them by **dragging and dropping the datasheet columns**
In the following example, we can create the **Login** Reusable simply by **dragging and dropping the objects** from the Object Repository and parameterizing them by **dragging and dropping the datasheet columns**

![drag_drop1](img/toolui/draganddrop1.gif "drag_drop1")
Expand Down Expand Up @@ -119,7 +119,7 @@
* **Step 5** : Select the Environment and the corresponding Data sheets to be copied and then click **[Create] Button**

=== ":five: Object Repository"
This is the area where the Web Elements/Objects are present along with the multiple attributes/properties to be used to find that element on the Application.
This is the area where the Locators/Objects are present along with the multiple attributes/properties to be used to find that element on the Application.

![or1](img/toolui/OR1.JPG "or1")
Expand Down
4 changes: 2 additions & 2 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@
SET APP_CLASSPATH=lib\*;lib\clib\*

IF "%~1" == "" (
start javaw -Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Djavax.net.ssl.trustStore=Security\cacerts -Djavax.net.ssl.trustStorePassword=changeit -cp ingenious-ide-1.1.jar;%APP_CLASSPATH%; com.ing.ide.main.Main %*
start javaw -Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Djavax.net.ssl.trustStore=Security\cacerts -Djavax.net.ssl.trustStorePassword=changeit -cp ingenious-ide-1.0.jar;%APP_CLASSPATH%; com.ing.ide.main.Main %*
) ELSE (
java -Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -cp ingenious-ide-1.1.jar;%APP_CLASSPATH%; com.ing.ide.main.Main %*
java -Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -cp ingenious-ide-1.0.jar;%APP_CLASSPATH%; com.ing.ide.main.Main %*
)


Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ theme:
- search.highlight
- search.share
- content.code.annotate
logo: img/logo/SmallLogoWhite.png
user_color_mode_toggle: true
#palette:

Expand Down

0 comments on commit 5b2ceee

Please sign in to comment.