Ejemplo n.º 1
0
        /// <summary>
        ///     Creates a <see cref="AsyncWebElement" /> with the specified ID.
        /// </summary>
        /// <param name="elementId">The ID of this element.</param>
        /// <returns>A <see cref="AsyncWebElement" /> with the specified ID.</returns>
        public virtual AsyncWebElement CreateElement(string elementId)
        {
            if (string.IsNullOrWhiteSpace(elementId))
            {
                return(null);
            }
            var toReturn = new AsyncWebElement(this, elementId);

            return(toReturn);
        }
Ejemplo n.º 2
0
 public SyncWebElement(AsyncWebElement element)
 {
     AsyncElement = element;
 }
 public RemoteCoordinates(AsyncWebElement remoteWebElement)
 {
     this.remoteWebElement = remoteWebElement;
 }