よく聞くけど、「SharePoint リストの 5,000 件問題」ってなんなの?Hirofumi Ota
?
Microsoft 365 Virtual Marathon 2022 でお話した資料です。
Microsoft 365 Virtual Marathon
https://www.m365virtualmarathon.com/
Microsoft 365 Virtual Marathon 2022 Japanese Track
https://connpass.com/event/243871/
This document discusses automated analytics testing and A/B testing. It provides an overview of web analytics and user analytics. A/B testing is described as testing changes to a small portion of users first to avoid regressions. Examples are given of how analytics could be wrong, such as showing the wrong discount code. The document argues that QA personnel should test analytics to prevent data loss and ensure the correct information is captured. It proposes adding an extra HTTP request to intercept analytics data during testing to validate the key-value pairs match expectations.
よく聞くけど、「SharePoint リストの 5,000 件問題」ってなんなの?Hirofumi Ota
?
Microsoft 365 Virtual Marathon 2022 でお話した資料です。
Microsoft 365 Virtual Marathon
https://www.m365virtualmarathon.com/
Microsoft 365 Virtual Marathon 2022 Japanese Track
https://connpass.com/event/243871/
This document discusses automated analytics testing and A/B testing. It provides an overview of web analytics and user analytics. A/B testing is described as testing changes to a small portion of users first to avoid regressions. Examples are given of how analytics could be wrong, such as showing the wrong discount code. The document argues that QA personnel should test analytics to prevent data loss and ensure the correct information is captured. It proposes adding an extra HTTP request to intercept analytics data during testing to validate the key-value pairs match expectations.
Selenium has gone through several major releases over the past 15 years, starting with Selenium 1.x in 2004 which introduced the Selenium Core. Selenium 2.x was released in 2010 and introduced WebDriver. Selenium 3.x was released in 2016 and moved away from the RC version. The next major release, Selenium 4.x, will focus on full spec compliance.
Selenium and Appium are tools for automating testing of web and mobile applications. Selenium was originally used for testing web applications in browsers but as applications moved to mobile, Appium was created to allow the same tests to run on both Android and iOS platforms. Appium works by proxying commands to the appropriate automation tools on each platform. The presentation demonstrates sample code for testing a mobile app using Appium and discusses how physical robots can also be used for automated testing.
Understand the AI-powered test automation with Magic PodNozomi Ito
?
This document outlines a workshop agenda for understanding AI-powered test automation using Magic Pod, covering its introduction, basic and practical exercises, and technical details. The workshop aims to familiarize participants with Magic Pod's functionality, including creating and managing test cases for applications, as well as utilizing machine learning technologies to enhance test automation. Key topics include setting up the Magic Pod environment, performing various exercises, and exploring the future of test automation with AI.
基礎からわかる、機械学習のソフトウェアテストのへの適用例 - 「Bag Of Words」を使った「類似チケットの検索」Nozomi Ito
?
This document discusses bag-of-words, a technique in natural language processing where a text is represented as the bag (multiset) of its words, disregarding grammar and even word order but keeping multiplicity. The document provides examples of how bag-of-words works by taking text samples and representing them as vectors of word counts. It also discusses how to calculate the similarity between two text samples represented as bag-of-words vectors using cosine similarity.