从 Maven 中心(v. 2.10.0)自动安装 allure-commandline。在程序集中设置报告生成,启动。报告生成成功,但左侧窗格中的包和行为选项卡缺失。如果您从安装在机器上的相同 allure-report 上的 2.9.0 版本生成报告,则有选项卡。问题是什么?
IMadiev's questions
按照说明安装tomcat服务器%D0%B2%D0%BA%D0%B0-%D0%B8-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE %D0%B9%D0%BA %D0%B0-Tomcat-9-%D0%BD%D0%B0-Ubuntu- 16-04 ),将 jenkins.war 放入 webapps,启动服务器,安装 jenkins。创建了一个空作业,收集。控制台输出写道:
Building in workspace /root/.jenkins/workspace/simpleItem
Finished: SUCCESS
理论上,作业的工作文件夹应该已经出现了。但是根文件夹是空的,没有 .jenkins 文件夹。如何找到它?
情况:该目录包含一个 xml 文件 (Load.xml) 和另一个文件夹 (Project),其中包含 1 个名称未知的文件夹。如何借助bat文件拉出文件夹名,在Load.xml中找到一个子串,替换成文件夹名?UPD。Load.xml 文本,需要替换 ProjectName:
<?xml version="1.0" encoding="UTF-8"?>
<Projects Server="127.0.0.1" Password="7319" MinPeriod="200">
<Project Name="ProjectName" Address="1"/>
</Projects>
我有一个本地 csv 文件,如果可能的话,我想在同一个文件夹中拥有基于其数据构建的图形的 html。csv 每 24 小时更新一次,因此图表应随之更新。如何以最少的努力做到这一点?
$ sudo docker run -v $(pwd):/var/loadtest -it direvius/yandex-tank
docker: invalid reference format.
See 'docker run --help'.
我从办公室带走了团队。说明https://yandextank.readthedocs.io/en/latest/install.html?highlight=entrypoint。操作系统 Ubuntu
如何设置 GitLab 和 Jenkins 通信?在 Gitlab 主机 URL 中,指向私有组的链接,在 GitLab API 令牌中 - 带有 api 复选框的组成员(维护者)的个人访问令牌。但是没有授权,可能是什么问题?
如果只是在 Gitlab 主机 URL 中输入https://gitlab.com/,那么 TestConnection 会返回 Success,但是在创建 Item 时
无法连接到存储库:命令“git ls-remote -h https://gitlab.com/qa_InSAT/temprepos.git HEAD”返回状态码 128:stdout:stderr:登录失败,使用 ctrl+c 取消基本凭据提示. 登录失败,使用 ctrl+c 取消基本凭证提示。远程:HTTP 基本:访问被拒绝致命:“ https://gitlab.com/qa_InSAT/temprepos.git/ ”的身份验证失败
目前我正在根据文章学习 Allure https://habr.com/company/sberbank/blog/358836/ https://habr.com/company/sberbank/blog/359302/ 我决定尝试重复它在最简单的测试项目中,但未在目标中创建 allure 文件夹 -results:
pom.xml:
<groupId>me</groupId>
<artifactId>alluretest</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven-surefire-plugin.version>2.20.1</maven-surefire-plugin.version>
<aspectj.version>1.8.10</aspectj.version>
<allure-junit4.version>2.6.0</allure-junit4.version>
</properties>
<dependencies>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-junit4</artifactId>
<version>${allure-junit4.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<argLine>-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"</argLine>
<properties>
<property>
<name>listener</name>
<value>io.qameta.allure.junit4.AllureJunit4</value>
</property>
</properties>
<systemProperties>
<property>
<name>allure.results.directory</name>
<value>${project.build.directory}/allure-results</value>
</property>
</systemProperties>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
alluretest.java:
import io.qameta.allure.Step;
import org.junit.Assert;
import org.junit.Test;
public class alluretest {
@Step
public static void checkSumStep(int num1, int num2, int expectedSum) {
Assert.assertTrue("Сумма слагаемых не соответствует ожидаемому значению", num1 + num2 == expectedSum);
}
@Test
public void simpleTest2() {
checkSumStep(3, 2, 5);
checkSumStep(5, 4, 9);
}
}
我目前正在对 SVG 元素进行基于屏幕截图的测试。一页上有很多,所以它们不是同时加载的。编写了一个等待某个 SVG 出现在页面上的函数:
public void Wait(WebDriver driver, String XPath)
{
driver.manage().timeouts().pageLoadTimeout(240, TimeUnit.SECONDS);
WebDriverWait wait = new WebDriverWait(driver, 240);
wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath(XPath)));
wait.until(ExpectedConditions.elementToBeClickable(By.xpath(XPath)));
wait.until(ExpectedConditions.visibilityOf(driver.findElement(By.xpath(XPath))));
}
但它不能正常工作,因为 页面上空白区域的屏幕截图会定期创建。程序员说重点是svg是和页面并行加载的。我检查了存在元素,它告诉我嵌入已经出现,但实际上嵌入中还没有svg文件。那么如何等到 SVG 在页面上呈现?
也就是说,如果类Class有一个带有方法method()的嵌套类innerClass,那么这样的事情是可能的:
Class class = new Class();
class.innerClass.method();
我的任务是编写一个可以重新安装 Windows 桌面应用程序的 bat 文件。为此,您需要编写一个执行以下步骤的 bat 文件:
- 通过 ip (10.0.0.100) 在本地网络上的远程计算机上输入文件夹 为了获得访问权限,您必须指定用户名并输入网络密码
- 右侧文件夹中是安装程序的快捷方式。您需要输入快捷方式文件的位置,然后将 .exe 文件下载到您计算机的特定文件夹中。我读到人们用 robocopy 来做
我刚开始使用cmd,所以我正在寻求解决方案的帮助