How to use AsHorizontalScrollBar method of FlaUI.Core.AutomationElements.AutomationElementExtensions class

Best FlaUI code snippet using FlaUI.Core.AutomationElements.AutomationElementExtensions.AsHorizontalScrollBar

AutomationElement.AsMethods.cs

Source:AutomationElement.AsMethods.cs Github

copy

Full Screen

...76 }77 /// <summary>78 /// Converts the element to a <see cref="HorizontalScrollBar"/>.79 /// </summary>80 public static HorizontalScrollBar AsHorizontalScrollBar(this AutomationElement self)81 {82 return self == null ? null : new HorizontalScrollBar(self.FrameworkAutomationElement);83 }84 /// <summary>85 /// Converts the element to a <see cref="ListBox"/>.86 /// </summary>87 public static ListBox AsListBox(this AutomationElement self)88 {89 return self == null ? null : new ListBox(self.FrameworkAutomationElement);90 }91 /// <summary>92 /// Converts the element to a <see cref="ListBoxItem"/>.93 /// </summary>94 public static ListBoxItem AsListBoxItem(this AutomationElement self)...

Full Screen

Full Screen

AutomationElementExtensions.cs

Source:AutomationElementExtensions.cs Github

copy

Full Screen

...18 public GridCell AsGridCell() { return element.AsGridCell(); }19 public GridHeader AsGridHeader() { return element.AsGridHeader(); }20 public GridHeaderItem AsGridHeaderItem() { return element.AsGridHeaderItem(); }21 public GridRow AsGridRow() { return element.AsGridRow(); }22 public HorizontalScrollBar AsHorizontalScrollBar() { return element.AsHorizontalScrollBar(); }23 public Label AsLabel() { return element.AsLabel(); }24 public ListBox AsListBox() { return element.AsListBox(); }25 public ListBoxItem AsListBoxItem() { return element.AsListBoxItem(); }26 public Menu AsMenu() { return element.AsMenu(); }27 public MenuItem AsMenuItem() { return element.AsMenuItem(); }28 public ProgressBar AsProgressBar() { return element.AsProgressBar(); }29 public RadioButton AsRadioButton() { return element.AsRadioButton(); }30 public Slider AsSlider() { return element.AsSlider(); }31 public Tab AsTab() { return element.AsTab(); }32 public TabItem AsTabItem() { return element.AsTabItem(); }33 public TextBox AsTextBox() { return element.AsTextBox(); }34 public Thumb AsThumb() { return element.AsThumb(); }35 public TitleBar AsTitleBar() { return element.AsTitleBar(); }36 public ToggleButton AsToggleButton() { return element.AsToggleButton(); }...

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using FlaUI.Core;7using FlaUI.Core.AutomationElements;8using FlaUI.Core.AutomationElements.Infrastructure;9using FlaUI.Core.Definitions;10using FlaUI.Core.Input;11using FlaUI.Core.Tools;12using FlaUI.Core.WindowsAPI;13using System.Threading;14{15 {16 static void Main(string[] args)17 {18 var app = Application.Launch("notepad.exe");19 var window = app.GetMainWindow(AutomationBase.automation);20 var edit = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.Edit));21 edit.AsTextBox().Text = "Hello World!";22 var hScrollBar = edit.AsHorizontalScrollBar();23 hScrollBar.Value = 100;24 app.Close();25 }26 }27}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using FlaUI.Core;7using FlaUI.Core.AutomationElements;8using FlaUI.Core.Conditions;9using FlaUI.Core.Definitions;10using FlaUI.Core.Input;11using FlaUI.Core.Tools;12using FlaUI.UIA3;13using System.Windows.Automation;14using System.Windows.Automation.Provider;15using System.Windows.Automation.Text;16using System.Windows.Automation.Peers;17using System.Windows.Automation.Core;18using System.Windows.Automation;19{20 {21 public static AutomationElement AsHorizontalScrollBar(this AutomationElement element)22 {23 return element.FindFirst(TreeScope.Children, ConditionFactory.ByControlType(ControlType.ScrollBar).And(ConditionFactory.ByOrientation(OrientationType.Horizontal)));24 }25 }26}27using System;28using System.Collections.Generic;29using System.Linq;30using System.Text;31using System.Threading.Tasks;32using FlaUI.Core;33using FlaUI.Core.AutomationElements;34using FlaUI.Core.Conditions;35using FlaUI.Core.Definitions;36using FlaUI.Core.Input;37using FlaUI.Core.Tools;38using FlaUI.UIA3;39using System.Windows.Automation;40using System.Windows.Automation.Provider;41using System.Windows.Automation.Text;42using System.Windows.Automation.Peers;43using System.Windows.Automation.Core;44using System.Windows.Automation;45{46 {47 public static AutomationElement AsVerticalScrollBar(this AutomationElement element)48 {49 return element.FindFirst(TreeScope.Children, ConditionFactory.ByControlType(ControlType.ScrollBar).And(ConditionFactory.ByOrientation(OrientationType.Vertical)));50 }51 }52}53using System;54using System.Collections.Generic;55using System.Linq;56using System.Text;57using System.Threading.Tasks;58using FlaUI.Core;59using FlaUI.Core.AutomationElements;60using FlaUI.Core.Conditions;61using FlaUI.Core.Definitions;62using FlaUI.Core.Input;63using FlaUI.Core.Tools;64using FlaUI.UIA3;65using System.Windows.Automation;66using System.Windows.Automation.Provider;67using System.Windows.Automation.Text;68using System.Windows.Automation.Peers;69using System.Windows.Automation.Core;70using System.Windows.Automation;

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using FlaUI.Core;7using FlaUI.Core.AutomationElements;8using FlaUI.Core.Definitions;9using FlaUI.Core.Input;10using FlaUI.Core.Tools;11using FlaUI.UIA3;12using System.Windows.Automation;13using FlaUI.Core.AutomationElements.Infrastructure;14using FlaUI.Core.WindowsAPI;15using System.Windows.Forms;16using System.Threading;17using FlaUI.Core.Conditions;18{19 {20 static void Main(string[] args)21 {22 var application = Application.Launch(@"C:\Program Files\Internet Explorer\iexplore.exe");23 Thread.Sleep(10000);24 var automation = new UIA3Automation();25 var desktop = automation.GetDesktop();26 var window = desktop.FindFirstDescendant(cf => cf.ByClassName("IEFrame"));27 var element = window.FindFirstDescendant(cf => cf.ByAutomationId("1001"));28 var scrollBar = element.AsHorizontalScrollBar();29 var value = scrollBar.Value;30 Console.WriteLine("Value of scrollbar is: " + value);31 Console.ReadLine();32 }33 }34}35var element = window.FindFirstDescendant(cf => cf.ByAutomationId("1001"));36var scrollBar = element.AsHorizontalScrollBar();37var value = scrollBar.Value;

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using FlaUI.Core.AutomationElements;7using FlaUI.Core;8using FlaUI.Core.Definitions;9using FlaUI.Core.Input;10using FlaUI.Core.WindowsAPI;11using System.Windows.Forms;12using FlaUI.Core.Tools;13using FlaUI.Core.AutomationElements.Infrastructure;14using FlaUI.Core.WindowsAPI;15using FlaUI.Core.AutomationElements.Scrolling;16using FlaUI.Core.AutomationElements.Scrolling.Interfaces;17using System.Windows.Automation;

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.AutomationElements.Infrastructure;3using FlaUI.Core.Definitions;4using FlaUI.Core.Input;5using FlaUI.Core.WindowsAPI;6using System;7using System.Collections.Generic;8using System.Linq;9using System.Text;10using System.Threading.Tasks;11{12 {13 static void Main(string[] args)14 {15 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");16 var window = app.GetMainWindow(Automation);17 var scrollBar = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.ScrollBar).And(cf.ByAutomationId("193"))).AsHorizontalScrollBar();18 var scrollBar2 = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.ScrollBar).And(cf.ByAutomationId("193"))).AsHorizontalScrollBar();19 scrollBar.ScrollRight();20 scrollBar2.ScrollLeft();21 Console.ReadLine();22 }23 private static AutomationBase Automation => FlaUI.Core.Automation.AutomationFactory.GetAutomation();24 }25}267. AsImage() Method27public static Image AsImage(this AutomationElement automationElement)28using FlaUI.Core.AutomationElements;29using FlaUI.Core.AutomationElements.Infrastructure;30using FlaUI.Core.Definitions;31using FlaUI.Core.Input;32using FlaUI.Core.WindowsAPI;33using System;34using System.Collections.Generic;35using System.Linq;36using System.Text;37using System.Threading.Tasks;38{39 {40 static void Main(string[] args)41 {42 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");43 var window = app.GetMainWindow(Automation);44 var image = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.Image).And(cf.ByAutomationId("133"))).AsImage();

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.AutomationElements.Infrastructure;3using FlaUI.Core.Definitions;4using FlaUI.Core.Input;5using FlaUI.Core.WindowsAPI;6using FlaUI.UIA3;7using System;8using System.Collections.Generic;9using System.Linq;10using System.Text;11using System.Threading.Tasks;12{13 {14 static void Main(string[] args)15 {16 using (var application = FlaUI.Core.Application.Launch(@"D:\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe"))17 {18 var window = application.GetMainWindow(new UIA3Automation());19 var horizontalScrollBar = window.FindFirstDescendant(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.ScrollBar)).AsHorizontalScrollBar();20 var thumb = horizontalScrollBar.Thumb;21 var thumbSize = thumb.BoundingRectangle;22 var scrollBarSize = horizontalScrollBar.BoundingRectangle;23 var listViewSize = window.FindFirstDescendant(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.List)).BoundingRectangle;24 var thumbWidth = thumbSize.Width;25 var scrollBarWidth = scrollBarSize.Width;26 var listViewWidth = listViewSize.Width;27 var difference = listViewWidth - scrollBarWidth;28 var numberOfTimes = difference / thumbWidth;29 for (int i = 0; i < numberOfTimes; i++)30 {31 thumb.Click();32 }33 }34 }35 }36}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.AutomationElements.Infrastructure;3using FlaUI.Core.Conditions;4using FlaUI.Core.Definitions;5using FlaUI.Core.Tools;6using FlaUI.UIA3;7using System;8using System.Collections.Generic;9using System.Linq;10using System.Text;11using System.Threading.Tasks;12using System.Windows.Automation;13{14 {15 static void Main(string[] args)16 {17 using (var automation = new UIA3Automation())18 {19 var desktop = automation.GetDesktop();20 var window = desktop.FindFirstDescendant(cf => cf.ByClassName("WindowsForms10.Window.8.app.0.141b42a_r14_ad1").And(cf.ByControlType(ControlType.Window)));21 var button = window.FindFirstDescendant(cf => cf.ByAutomationId("HorizontalScrollBar").And(cf.ByControlType(ControlType.ScrollBar)));22 var hScrollBar = button.AsHorizontalScrollBar();23 hScrollBar.SmallIncrease();24 hScrollBar.SmallDecrease();25 }26 }27 }28}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.Input;3using System;4using System.Collections.Generic;5using System.Linq;6using System.Text;7using System.Threading.Tasks;8{9 {10 static void Main(string[] args)11 {12 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");13 var process = app.GetMainWindow(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("CalculatorFrame"));14 var button = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("num5Button"));15 button.AsButton().Invoke();16 var scrollBar = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("HistoryFlyout"));17 scrollBar.AsHorizontalScrollBar().Value = 100;18 Console.WriteLine(scrollBar.AsHorizontalScrollBar().Value);19 Console.ReadLine();20 }21 }22}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.Definitions;3using FlaUI.Core.Tools;4using System;5using System.Windows.Forms;6{7 {8 public Form1()9 {10 InitializeComponent();11 }12 private void button1_Click(object sender, EventArgs e)13 {14 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");15 var window = app.GetMainWindow(AutomationBase.ById("WindowsForms10.Window.8.app.0.141b42a_r10_ad1"));16 var hScrollBar = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.ScrollBar).And(cf.ByControlType(ControlType.Thumb))).AsHorizontalScrollBar();17 var value = hScrollBar.Value;18 hScrollBar.Value = 100;19 var maxValue = hScrollBar.Maximum;20 var minValue = hScrollBar.Minimum;21 var largeChange = hScrollBar.LargeChange;22 var smallChange = hScrollBar.SmallChange;23 var orientation = hScrollBar.Orientation;24 var isEnabled = hScrollBar.IsEnabled;25 var isVisible = hScrollBar.IsVisible;26 var isOffScreen = hScrollBar.IsOffscreen;27 var isReadOnly = hScrollBar.IsReadOnly;28 var isRequired = hScrollBar.IsRequired;29 var isPasswordProtected = hScrollBar.IsPasswordProtected;30 var isKeyboardFocusable = hScrollBar.IsKeyboardFocusable;31 hScrollBar.IsEnabled = true;

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Windows.Automation;3using FlaUI.Core.AutomationElements;4using FlaUI.Core.AutomationElements.Infrastructure;5using FlaUI.Core.Definitions;6using FlaUI.Core.Input;7using FlaUI.Core.WindowsAPI;8using FlaUI.UIA3;9using System.Windows.Forms;10using FlaUI.Core;11using FlaUI.Core.Conditions;12using FlaUI.Core.AutomationElements.Scrolling;13using FlaUI.Core.Tools;14using FlaUI.UIA2;15using FlaUI.Core.EventHandlers;16using System.Threading;17{18 {19 static void Main(string[] args)20 {21 var app = FlaUI.Core.Application.Launch("notepad.exe");22 Thread.Sleep(1000);23 var element = app.GetMainWindow(new UIA3Automation());24 var scrollBar = element.AsHorizontalScrollBar();25 scrollBar.Scroll(ScrollAmount.LargeIncrement);26 element.Close();27 app.Close();28 }29 }30}31using FlaUI.Core.AutomationElements;32using FlaUI.Core.AutomationElements.Infrastructure;33using FlaUI.Core.Definitions;34using FlaUI.Core.Input;35using FlaUI.Core.WindowsAPI;36using System;37using System.Collections.Generic;38using System.Linq;39using System.Text;40using System.Threading.Tasks;41{42 {43 static void Main(string[] args)44 {45 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");46 var window = app.GetMainWindow(Automation);47 var image = window.FindFirstDescendant(cf => cf.ByControlType(ControlType.Image).And(cf.ByAutomationId("133"))).AsImage();

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.AutomationElements.Infrastructure;3using FlaUI.Core.Definitions;4using FlaUI.Core.Input;5using FlaUI.Core.WindowsAPI;6using FlaUI.UIA3;7using System;8using System.Collections.Generic;9using System.Linq;10using System.Text;11using System.Threading.Tasks;12{13 {14 static void Main(string[] args)15 {16 using (var application = FlaUI.Core.Application.Launch(@"D:\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe"))17 {18 var window = application.GetMainWindow(new UIA3Automation());19 var horizontalScrollBar = window.FindFirstDescendant(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.ScrollBar)).AsHorizontalScrollBar();20 var thumb = horizontalScrollBar.Thumb;21 var thumbSize = thumb.BoundingRectangle;22 var scrollBarSize = horizontalScrollBar.BoundingRectangle;23 var listViewSize = window.FindFirstDescendant(cf => cf.ByControlType(FlaUI.Core.Definitions.ControlType.List)).BoundingRectangle;24 var thumbWidth = thumbSize.Width;25 var scrollBarWidth = scrollBarSize.Width;26 var listViewWidth = listViewSize.Width;27 var difference = listViewWidth - scrollBarWidth;28 var numberOfTimes = difference / thumbWidth;29 for (int i = 0; i < numberOfTimes; i++)30 {31 thumb.Click();32 }33 }34 }35 }36}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.AutomationElements.Infrastructure;3using FlaUI.Core.Conditions;4using FlaUI.Core.Definitions;5using FlaUI.Core.Tools;6using FlaUI.UIA3;7using System;8using System.Collections.Generic;9using System.Linq;10using System.Text;11using System.Threading.Tasks;12using System.Windows.Automation;13{14 {15 static void Main(string[] args)16 {17 using (var automation = new UIA3Automation())18 {19 var desktop = automation.GetDesktop();20 var window = desktop.FindFirstDescendant(cf => cf.ByClassName("WindowsForms10.Window.8.app.0.141b42a_r14_ad1").And(cf.ByControlType(ControlType.Window)));21 var button = window.FindFirstDescendant(cf => cf.ByAutomationId("HorizontalScrollBar").And(cf.ByControlType(ControlType.ScrollBar)));22 var hScrollBar = button.AsHorizontalScrollBar();23 hScrollBar.SmallIncrease();24 hScrollBar.SmallDecrease();25 }26 }27 }28}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.AutomationElements;2using FlaUI.Core.Input;3using System;4using System.Collections.Generic;5using System.Linq;6using System.Text;7using System.Threading.Tasks;8{9 {10 static void Main(string[] args)11 {12 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");13 var process = app.GetMainWindow(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("CalculatorFrame"));14 var button = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("num5Button"));15 button.AsButton().Invoke();16 var scrollBar = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("HistoryFlyout"));17 scrollBar.AsHorizontalScrollBar().Value = 100;18 Console.WriteLine(scrollBar.AsHorizontalScrollBar().Value);19 Console.ReadLine();20 }21 }22}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Windows.Automation;3using FlaUI.Core.AutomationElements;4using FlaUI.Core.AutomationElements.Infrastructure;5using FlaUI.Core.Definitions;6using FlaUI.Core.Input;7using FlaUI.Core.WindowsAPI;8using FlaUI.UIA3;9using System.Windows.Forms;10using FlaUI.Core;11using FlaUI.Core.Conditions;12using FlaUI.Core.AutomationElements.Scrolling;13using FlaUI.Core.Tools;14using FlaUI.UIA2;15using FlaUI.Core.EventHandlers;16using System.Threading;17{18 {19 static void Main(string[] args)20 {21 var app = FlaUI.Core.Application.Launch("notepad.exe");22 Thread.Sleep(1000);23 var element = app.GetMainWindow(new UIA3Automation());24 var scrollBar = element.AsHorizontalScrollBar();25 scrollBar.Scroll(ScrollAmount.LargeIncrement);26 element.Close();27 app.Close();28 }29 }30}31using FlaUI.Core.AutomationElements;32using FlaUI.Core.Input;33using System;34using System.Collections.Generic;35using System.Linq;36using System.Text;37using System.Threading.Tasks;38{39 {40 static void Main(string[] args)41 {42 var app = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");43 var process = app.GetMainWindow(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("CalculatorFrame"));44 var button = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("num5Button"));45 button.AsButton().Invoke();46 var scrollBar = process.FindFirstDescendant(FlaUI.Core.Conditions.ConditionFactory.ByAutomationId("HistoryFlyout"));47 scrollBar.AsHorizontalScrollBar().Value = 100;48 Console.WriteLine(scrollBar.AsHorizontalScrollBar().Value);49 Console.ReadLine();50 }51 }52}

Full Screen

Full Screen

AsHorizontalScrollBar

Using AI Code Generation

copy

Full Screen

1using System;2using System.Windows.Automation;3using FlaUI.Core.AutomationElements;4using FlaUI.Core.AutomationElements.Infrastructure;5using FlaUI.Core.Definitions;6using FlaUI.Core.Input;7using FlaUI.Core.WindowsAPI;8using FlaUI.UIA3;9using System.Windows.Forms;10using FlaUI.Core;11using FlaUI.Core.Conditions;12using FlaUI.Core.AutomationElements.Scrolling;13using FlaUI.Core.Tools;14using FlaUI.UIA2;15using FlaUI.Core.EventHandlers;16using System.Threading;17{18 {19 static void Main(string[] args)20 {21 var app = FlaUI.Core.Application.Launch("notepad.exe");22 Thread.Sleep(1000);23 var element = app.GetMainWindow(new UIA3Automation());24 var scrollBar = element.AsHorizontalScrollBar();25 scrollBar.Scroll(ScrollAmount.LargeIncrement);26 element.Close();27 app.Close();28 }29 }30}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful