Skip to content

Commit b1a48a7

Browse files
committed
Update the test-directory generator script
1 parent 1a223c4 commit b1a48a7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def main():
190190
data.append("*.egg-info")
191191
data.append("dist")
192192
data.append("build")
193-
data.append("ghostdriver.log")
193+
data.append(".eggs")
194194
data.append("eggs")
195195
data.append("parts")
196196
data.append("bin")
@@ -255,6 +255,7 @@ def main():
255255
data.append("log_archives")
256256
data.append("archived_logs")
257257
data.append("geckodriver.log")
258+
data.append("ghostdriver.log")
258259
data.append("pytestdebug.log")
259260
data.append("reports/*.xml")
260261
data.append("latest_report")
@@ -618,7 +619,6 @@ def main():
618619
data.append(
619620
' self.assert_text("github.com", ResultsPage.search_results)'
620621
)
621-
data.append(" self.assert_element(ResultsPage.images_link)")
622622
data.append("")
623623
file_path = "%s/%s" % (dir_name_3, "google_test.py")
624624
file = codecs.open(file_path, "w+", "utf-8")
@@ -636,8 +636,6 @@ def main():
636636
data.append("")
637637
data.append("")
638638
data.append("class ResultsPage(object):")
639-
data.append(" google_logo = 'img[alt=\"Google\"]'")
640-
data.append(' images_link = "link=Images"')
641639
data.append(' search_results = "div#center_col"')
642640
data.append("")
643641
file_path = "%s/%s" % (dir_name_3, "google_objects.py")

0 commit comments

Comments
 (0)