コード例 #1
0
 public void SwitchToWindowByTitle(String title)
 {
     CommonsFunctions.SwitchToWindowByTitle(title);
 }
コード例 #2
0
 public void SwitchToWindowByUrl(String url)
 {
     CommonsFunctions.SwitchToWindowByUrl(url);
 }
コード例 #3
0
 public static void PressAndSwipe(IWebElement element, double porcent, int loop = 0)
 {
     CommonsFunctions.PressAndSwipe(element, porcent, loop);
 }
コード例 #4
0
 public List <String> GetAllWindows()
 {
     return(CommonsFunctions.GetAllWindows());
 }
コード例 #5
0
 public static string PagesSource()
 {
     return(CommonsFunctions.PageSource());
 }
コード例 #6
0
 public virtual void Scroll(string i = null)
 {
     CommonsFunctions.Scroll(i);
 }
コード例 #7
0
 public virtual void MoveToElement(IWebElement elem)
 {
     CommonsFunctions.MoveToElement(elem);
 }
コード例 #8
0
 public static IWebDriver SwitchToDefaultFrame()
 {
     return(CommonsFunctions.SwitchTo().DefaultContent());
 }
コード例 #9
0
 public static void SwitchToDefaultContent()
 {
     CommonsFunctions.SwitchTo().DefaultContent();
 }
コード例 #10
0
 public IWebElement FindNestedElement(By objeto1, By objeto2)
 {
     return(CommonsFunctions.FindNestedElements(objeto1, objeto2));
 }
コード例 #11
0
 public static String AlertGetText()
 {
     return(CommonsFunctions.SwitchTo().Alert().Text);
 }
コード例 #12
0
 public static void AlertDismiss()
 {
     CommonsFunctions.SwitchTo().Alert().Dismiss();
 }
コード例 #13
0
 public static void AlertAcept()
 {
     CommonsFunctions.SwitchTo().Alert().Accept();
 }
コード例 #14
0
 public void SwitchToDefaultWindow()
 {
     CommonsFunctions.SwitchToDefaultContent();
 }
コード例 #15
0
 public virtual void JavaScript(String jav)
 {
     CommonsFunctions.Javas(jav);
 }
コード例 #16
0
 public static void SwitchToDefaultFrame()
 {
     CommonsFunctions.SwitchToDefaultFrame();
 }
コード例 #17
0
 public static IWebDriver SwitchToFrameElement(IWebElement frameElement)
 {
     return(CommonsFunctions.SwitchTo().Frame(frameElement));
 }