- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这是一个基本问题,但我无法解决它。
我下载了示例 serenity 项目 (mvn archetype serenity-junit-screenplay-archetype) (https://www.youtube.com/watch?v=o-6CcDFn5Ug) 以在 google 中搜索“BDD in Action”。
我正在使用 Gradle 进行构建编译:
构建.gradle
repositories {
jcenter()
mavenLocal()
}
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:1.1.36")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'net.serenity-bdd.aggregator'
dependencies {
compile 'net.serenity-bdd:serenity-core:1.1.36'
compile 'net.serenity-bdd:serenity-junit:1.1.36'
compile 'net.serenity-bdd:serenity-screenplay:1.1.36'
compile 'net.serenity-bdd:serenity-screenplay-webdriver:1.1.36'
testCompile('junit:junit:4.12')
compile('org.assertj:assertj-core:1.7.0')
compile('com.googlecode.lambdaj:lambdaj:2.3.3')
}
gradle.startParameter.continueOnFailure = true
@RunWith(SerenityRunner.class)
public class SearchByKeywordStory {
Actor anna = Actor.named("Anna");
@Managed(uniqueSession = true, clearCookies=BeforeEachTest)
public WebDriver herBrowser;
@Steps
OpenTheApplication openTheApplication;
@Before
public void annaCanBrowseTheWeb() {
System.setProperty("webdriver.ie.driver", "../resources/IEDriverServer.exe");
System.setProperty("webdriver.chrome.driver", "../resources/chromedriver.exe");
anna.can(BrowseTheWeb.with(herBrowser));
}
@Test
public void search_results_should_show_the_search_term_in_the_title() {
givenThat(anna).wasAbleTo(openTheApplication);
when(anna).attemptsTo(Search.forTheTerm("BDD In Action"));
then(anna).should(eventually(seeThat(TheWebPage.title(), containsString("BDD In Action"))));
}
}
at org.ao.automation.tasks.OpenTheApplication.performAs(OpenTheApplication.java:15)
at org.ao.automation.features.search.SearchByKeywordStory.search_results_should_show_the_search_term_in_the_title(SearchByKeywordStory.java:43)
最佳答案
你试过升级IE驱动到2.53.0的版本吗?
关于java - 如何使用 Serenity 调用 IEDriver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37953433/
在我的时区早上好。 我正在构建 Selenium 2.0 测试,并且正在使用 IEDriver。我正在按照说明进行操作在本引用文献中InternetExplorerDriver 。 我应该将可执行文件
我如何接受使用 selenium 和 IEDriver 保存此下载链接? (这已经是一个 iedriver 页面) 最佳答案 无法使用 selenium 控制浏览器上的下载弹出窗口,因为浏览器使用无法
我知道这是一个基本问题,但我无法解决它。 我下载了示例 serenity 项目 (mvn archetype serenity-junit-screenplay-archetype) (https:/
我一直在尝试使用 selenium 并尝试运行 Internet Explorer 11,但出现以下错误。 Started InternetExplorerDriver server (32-bit)
我使用 selenium 在 visual studio 中编写了一个简单的测试,它在 Firefox 中运行。但是,我试图在多个浏览器上运行相同的测试,但我不断收到相同的错误,即在目录或 PAT
我想要的是实现这个方法 public static void IECloseWindows(){ } public static void ChromeCloseWindows(){ } 我的驱动
org.openqa.selenium.NoSuchWindowException: Unable to get browser (WARNING: The server did not provid
我正在使用 selenium webdriver(用于 Internet Explorer)。它的作用基本上是在 Internet Explorer 中打开网页并提交表单。 如何自动杀死在后台运行的
当驱动程序启动浏览器时,它总是与本地主机打开然后导航到给定的 URL,但驱动程序未获取当前页面标题而不是始终显示本地主机标题“此页面不能显示”。我正在发布我的代码和我收到的错误,请告诉我我哪里错了。
我有一点疑问。 为什么我们需要 IEdriver 和 Chrome 驱动程序在 IE 和 Chrome 中运行 selenium scrits,但我们不需要 firefox 驱动程序来运行脚本? 有同
使用 selenium IEwebdriver,webdriver Alert 类方法不起作用...这个问题似乎是 IE 浏览器特有的,而在 chrome、ff 等浏览器中效果很好。 我们可以使用任何
我有一套在 Firefox 和 Chrome 中运行良好的自动化功能,并且我还想启动 IEDriver 的实例。 我已按照 Selenium's Google Code wiki 设置 IEDrive
我有 Selenium IE 驱动程序,用 Java 编码。此 Webapp 仅与 IE9 兼容。我必须使用 SSL 信任证书,然后使用 Autoit_script 来绕过 IE9 中的这些证书弹出窗
大家好, 我将 Selenium 与各种驱动程序一起使用,但今天当我第一次使用 IEDriver 时出现异常:"Error retrieving window with handle current"
我正在尝试查找以下代码的 xpath。但它显示出一些错误。检查元素是: driver.findElement(By.id("C2_W10_V11_btnCREATE_CUSTMC")).
我正在使用 Selenium-Firefox-driver 和 Selenium-Chrome-Driver 2.0a5 版(Web Driver API),并且我我正在尝试测试具有 BASIC 身份
我在 Win10 上使用 IEDriverServer 3.9 和 IE 11。使用 C# 和 .NET frmaework 4.6.1 测试解决方案。 我在进行 selenium 测试时遇到经典错误
我是一名优秀的程序员,十分优秀!