Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/en/commands/device/app/activate-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ activate_app('io.appium.android.apis')

```csharp
// C#
// Supports only `mobile: queryAppState` for iOS, XCUITest
driver.activateApp('com.apple.Preferences');
driver.activateApp('io.appium.android.apis');

```

Expand Down
3 changes: 2 additions & 1 deletion docs/en/commands/interactions/touch/long-press.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ touch_action.long_press(element).perform

```csharp
// C#
// TODO C# sample
var touchAction = new TouchAction(Driver);
touchAction.LongPress(element).Perform();

```

Expand Down
2 changes: 1 addition & 1 deletion docs/en/commands/session/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ self.driver.quit()
```javascript
// Javascript
// webdriver.io example
driver.endSession();
driver.deleteSession();

// wd example
await driver.quit();
Expand Down