在此代码中,我使用 Single 类和功能类,这里 AllpagesLogins 是一个类名,并且此代码在功能类中编写,整体脚本在 TestNg 类中运行。因此,当我单击 linkBtn Name as matrimonials@shaadi.com 时,它会在该子窗口关闭链接按钮中显示子窗口,所以我也通过直接代码编写子窗口代码的代码,但没有人是不是工作正常?我该如何处理这个子窗口?
package EmailMessage;
import java.util.Set;
import org.junit.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import Class.AllpagesLogins;
//Declaring the Class Name
public class EmailMessage
{
public void EMSG(WebDriver driver) throws Exception
{
//Here AllpagesLogins is a Class Name
AllpagesLogins APL = new AllpagesLogins();
//Clicking on the Email Message Menu Button
driver.findElement(By.id(APL.EMSG_EmailMsg_MenuBtn_ID)).click();
System.out.println("Clicked on the Email Message Menu Button");
Thread.sleep(2000);
//Checking the Text for the Email Message Title
WebElement asserta=driver.findElement(By.id(APL.EMSG_EmailMsg_MainTitle_ID));
String a=asserta.getText();
try
{
Assert.assertEquals("Email Messages", a);
System.out.println("Main Title Name as Email Messages");
}
catch (Error e1)
{
System.out.println("Wrong Title");
}
//Checking the Text for the Sub Label
WebElement assertb=driver.findElement(By.id(APL.EMSG_EmailMsg_SubLbl_ID));
String b=assertb.getText();
try
{
Assert.assertEquals("Click on the Sender Email to view its details.", b);
System.out.println("Main Title Name as Sub Label");
}
catch (Error e1)
{
System.out.println("Wrong Title");
}
//Clicking on the Child Window
//getting parent Id
String Currenthandle=driver.getWindowHandle();
System.out.println("parent window id:"+Currenthandle);
//handle the child window
Set<String> handles= driver.getWindowHandles();
handles.remove(Currenthandle);
//performing action on child window
driver.switchTo().window(handles.iterator().next());
Thread.sleep(3000);
//Clicking on the Email Message Menu Button
if(driver.findElement(By.linkText("matrimonials@shaadi.com")).isDisplayed())
{
System.out.println("Link Name is Displaying");
driver.findElement(By.linkText("matrimonials@shaadi.com")).click();
System.out.println("Clicked on the Email Id Link Button");
Thread.sleep(2000);
}
else
{
System.out.println("Link Name is Not Displaying");
}
//Handing the Child Windows
if(driver.findElement(By.name("Message Details")).isDisplayed())
{
System.out.println("Message Details Label is Displaying");
driver.findElement(By.id(APL.EMSG_ChildWindow_Close_LnkBtn_ID)).click();
System.out.println("Clicked on the Close Button in the Child Window");
Thread.sleep(2000);
}
else
{
System.out.println("Message Details Label is Not Displaying");
}
}
}